Most Recent Posts
-
.NET FrameworkC#
Reusable .NET MVC View Components: A Practical Example
by Daniel Woodby Daniel WoodIn this tutorial, I will explain how to create re-usable view components. The aim will be to call one view component and pass in parameters to return a list of …
-
View components and partial views are similar and can often be used for the same purposes. They are both used to reduce duplicate code and allow for reusable components. Learn …
-
.NET Framework
How to Create Single Sign On Applications with ASP.NET
by Daniel Woodby Daniel Wood 3 readWhat is Single Sign On? SSO is an authentication approach that allows users to login to multiple applications with the same credentials and via the same login/identity management system. Examples …
-
What is Change Tracking? Database change tracking is a mechanism for recording changes made to the contents of a database. Change tracking makes it possible for users to keep track …
-
Entity FrameworkSQL
How to use SQL with Entity Framework – Dynamic SQL vs Stored Procedures
by Daniel Woodby Daniel WoodUsing Dynamic/Ad Hoc SQL with Entity Framework Ad hoc SQL refers to dynamically generated SQL queries, as opposed to queries stored and run via a stored procedure. Positives Refactoring Code …
-
Introduction Writing cleaner code is a constant cycle of improvement for developers. New innovations and technologies get released that help us make more readable, versatile, and clean code. Cleaner code …