One of the great things about the .NET community is the wealth of open source projects that are available to you. In previous columns, I've written about my use of Castle Windsor (December 2011) and ...
When I talk about "projections," what do I mean? In the Model-View-ViewModel (MVVM) pattern, a view model is bound to a Windows Presentation Foundation (WPF) window or user control (the view). The ...
AutoMapper is a popular object-to-object mapping library that can be used to map objects belonging to dissimilar types. As an example, you might need to map the DTOs (Data Transfer Objects) in your ...
What is interesting about this kind of relationship in EF is the simplicity that is lacking in the One-to-N, as the table that ties both tables together is an ordinary table. The first table (Account) ...
This is an example of working with Entity Framework. This project adds some complexity due to the addition of DTOs returned from the ENDPOINTS, where we could return the 'Entities' directly, making it ...