If you have questions regarding the 2.1 version of Entity Framework for .NET Core.
I am trying to seed an user entity in my database. The User entity has an owend property EmailPermissions. When …
c# entity-framework-core ef-core-2.1EF Core 2.1 has new feature - Query Types. Some of the main usage scenarios for query types are: Serving as …
asp.net-core ef-core-2.1I have researched this and always found examples like this: var blogs = context.Blogs .FromSql("SELECT * FROM dbo.Blogs") .ToList(); …
c# sql entity-framework ef-core-2.1I'm using netcoreapp 2.1 with EF Core 2.1 and updating my database with data migrations and have come into a problem with …
c# .net-core entity-framework-migrations ef-core-2.1I'm using Asp.Net Core 2.1, Mvc, c#, EF Core with Code First and Migrations. I'm trying to build a table …
asp.net-core entity-framework-migrations composite-primary-key asp.net-core-2.1 ef-core-2.1I have the following entity: public class Level { public int LevelId { get; set; } public int? ParentLevelId { get; set; } public string …
c# entity-framework-core one-to-many ef-fluent-api ef-core-2.1I'm using Entity Framework Core 2.1.2 with lazy loading enabled and am performing a query using AsNoTracking. I'm using Include to …
ef-core-2.1I've got the following data layer setup: public class Repository : IRepository { private readonly MyDbContext _dbContext; public List<Meter> …
entity-framework-core ef-core-2.1 ef-core-3.0I'd like to set one bool property in my controller and save it to the database. EF throws an error …
c# entity-framework entity-framework-core ef-core-2.1Is it possible to use .Include() in a way which works in both Entity Framework 6 and EF Core? I currently …
c# entity-framework ef-core-2.0 ef-core-2.1