Entity Framework Core – Error while mapping query result to entity
We are using Entity Framework Core 8.0.1. We are storing the data as json in the database table columns. Below is a sample entity resembling the one we have:
Entity Framework Core : Select() – turn an IList property into a joined string?
I have the following select which returns the 4 columns I want:
Entity Framework Core : Select() – change a column name
I have the following select:
EntityFramework Select() – change a column name
I have the following select:
Entity Framework Select() – turn an IList property into a joined string?
I have the following select which gives me the 4 columns I want:
Ef Core 8: table splitting
I’m trying to use table splitting with EF Core 8 and I’m having some issues with the mappings. Here’s what my types look like:
Ef Core 8: table splitting
I’m trying to use table splitting with EF Core 8 and I’m having some issues with the mappings. Here’s what my types look like:
Efcore : how to make sure we get up to date datas from a DBSet
I’m pretty new to efcore and i’m a facing an issue where i get some entities that do not seem to exist in my database anymore.
EFCore SaveChanges Fails (ver 8.01,.Net8 )
After upgrading from .NetFramework with EF to .Net8 with EFCore I am unable to modify my SalesQuotes.
How can I save a collection of CultureInfo type using EF Core without adding backing fields?
In a class, I have a collection of type List<CultureInfo> OfficialLanguages. I need to respect domain driven design for this project. I cannot add a backing field of type List<string> officialLanguagesCodes and handle it that way.