Continue the tutorial about APIs with Entity Framework Core and in particular how to implemente the PUT to update a record with dependencies.
Tag: entity-framework-core
APIs with Entity Framework Core: POST
Here how to change the minimal APIs with Entity Framework Core for POST and GET in order to save and retrieve an object with dependencies.
APIs with Entity Framework Core
I want to give a complete example of minimal APIs in Blazor with Entity Framework Core with complex objects.
Create Database From Model Using EFCore
Wouldn’t it be nice if the database gets created automatically on the EF Core model your created? To that end this article discusses just that
Audit with Entity Framework Core
How to implement an efficient audit system with Entity Framework Core? In this post I explain what to do and the source code is on GitHub
Database Connection Resiliency in Entity Framework Core: update
In this post I’m talking about Database Connection Resiliency in Entity Framework Core, an update to my previous post about transaction operations
Database Connection Resiliency in Entity Framework Core
How to implement database connection resiliency using an inbuilt or custom execution strategy using Entity Framework Core
Transactions with Entity Framework Core
In the last couple of weeks, I was talking about Entity Framework Core for creating a model or call stored procedures. But how to use transactions?
Entity Framework Core and calling a stored procedure
With Entity Framework Core you are able creating a model from the database and also calling a stored procedure.
Creating a Model for an Existing Database
Creating entity & context model automatically in C# for an existing database is called Database-First approach with Entity Framework Core