Showing posts with label entity framework. Show all posts
Showing posts with label entity framework. Show all posts

4/21/18

Complex Joins .NET Core 2.0 Entity Framework and SQL Server

With this article, we take a look at building a console application using .NET Core 2.0 and Entity Framework (EF). The goal is to show how to start a project with .Net core, install the dependencies and run a small test to extract data from a SQL Server database using a complex join. Check this...

4/7/18

Single Model from a Multi-Join Query .NET Core Entity Framework SQL Server

When building data solutions with Entity Framework (EF), we tend to create entity models for each table that we need.  For instances when we need to join multiple tables, we either create a SQL Server view and bound EF Model or join the data entities using LINQ. Check  this article for...