Skip to content Skip to sidebar Skip to footer
Showing posts with the label Entity Framework Core

Ef Core Fix-up When Querying Subset Of Columns

From the documentation: Entity Framework Core will automatically fix-up navigation properties to a… Read more Ef Core Fix-up When Querying Subset Of Columns

Express Query With Multiple Or And Filter On Joined Table With Entity Framework Core

Here is my model class Parent { int Id; string Name; List Childs; } // name is uniqu… Read more Express Query With Multiple Or And Filter On Joined Table With Entity Framework Core

How To Remove Multiple Cascade Paths In Entity Framework

I am trying to define relationships between tables, but getting the following error: Introducing F… Read more How To Remove Multiple Cascade Paths In Entity Framework

Retrieve Json With Entityframework Core

I have store procedures returning json, thanks to for json path. How do you consume them with enti… Read more Retrieve Json With Entityframework Core

How To Enable Migration In Sqlite Using Ef

I have stuck in problem. I am writing a code for windows desktop application and I have to use sqli… Read more How To Enable Migration In Sqlite Using Ef

How Can I Achieve Sql Case Statement From Linq

I am new to LINQ and I would like to know if I can achieve the below SQL query from LINQ? I am usi… Read more How Can I Achieve Sql Case Statement From Linq

Visual Studio For Mac Connection To Remote Ms Sql Server Failed

I'm using Visual Studio for Mac 2017 on macOS Sierra with Microsoft EntityframeworkCore and I&#… Read more Visual Studio For Mac Connection To Remote Ms Sql Server Failed

Entity Framework Core 5.0 How To Convert Linq For Many-to-many Join To Use Intersection Table For Asp.net Membership

Question: How do I convert a LINQ query the performs a LEFT OUTER JOIN on a sub-select that INNER J… Read more Entity Framework Core 5.0 How To Convert Linq For Many-to-many Join To Use Intersection Table For Asp.net Membership