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.
EF Core 8 – RelationalConnectionDependencies does not contain a definition for ‘With’
I am upgrading a project from .NET Core 2.1 to .NET 8 and as part of that, I also need to upgrade Entity Framework Core to 8.0.
Does EF optimize projections to named types like it does for anonymous types?
In the Microsoft EF tutorial Efficient Querying, the section Project only properties you need describes how to make EF load only specific columns by projecting the entity queryable to an anonymous type. They don’t provide a code example, but to extend their other examples, it might look like this: