Let’s assume there is a .net web api application and that the developer wants to use a different value of a nested property than the…
.NET
Visual Studio 2017 is now available to download, and one interesting feature thereof is connected services, which enable connections between your app and any service on-premises or…
Some really easy ways to improve performance in your asp.net core web application are: response caching, which adds cache-related headers to responses, to reduce the…
In this tutorial we are going to create a simple ASP.NET 5 web application on Mac, use SignalR to push events from server to connected clients and…
In Entity Framework when you want to insert multiple items in your database you usually add your objects in your DbSet and then call context.SaveChanges at the…
Let’s assume you have the following model with a non-required string property. While you are trying to save this object in your Db using Entity Framework…