Over the previous two columns ("Integrating Entity Framework with an ASP.NET Web Site" and "Extending an Entity Framework Model -- and Some Limitations"), I've built a simple Entity Framework (EF) ...
This project is a web database application built using ASP.NET Core, VSCode, and the C# programming language. It follows the MVC (Model-View-Controller) design pattern and demonstrates how to ...
In this month's column, Peter Vogel takes a single -- and common -- problem and looks at all the technologies you can use to solve it, from getting the data design correct through handling updates and ...
Nothing has prevented ASP.NET developers from using a model view controller (MVC) architecture. But it's likely to get a lot easier with Microsoft's ASP.NET 3.5 Extensions, which will include the ...
How to use the InMemory provider in Entity Framework Core to test your methods without hitting the database or using fakes and mocks The InMemory database provider is an exciting feature in newer ...
Entity Framework Core allows you to store and retrieve data to and from an in-memory database. It’s a quick and easy way to test your ASP.NET Core 6 web applications. There are many reasons why you ...