Entity Framework (EF) Core is an open source multi-platform ORM developed by Microsoft.
I have declared the following model using the EF Core fluent API: modelBuilder.Entity<Foo>() .HasKey(p => …
c# asp.net entity-framework postgresql entity-framework-coreMy application which is being ported to .NET core will use the new EF Core with SQLite. I want to …
c# sqlite .net-core entity-framework-coreFor example, I have such model: public class Blog { public int BlogId { get; set; } public string Url { get; set; } public …
c# entity-framework entity-framework-core sql-viewI'm following the docs in order to create an initial migration. When I execute dotnet, I get the help section, …
c# asp.net-core .net-core entity-framework-core .net-core-3.0I'm trying to generate classes from a database (EntityFramework's database first approach). For convenience, I'm more or less walking along …
c# entity-framework-coreIn EF6 we usually able to use this way to configure the Entity. public class AccountMap : EntityTypeConfiguration<Account> { …
c# entity-framework-coreI am using Entity Framework Core and I need to see which SQL code is being generated. In previous versions …
entity-framework-coreI'm building a MVC application with .Net Core and I need to generate the script of a migration. With EF6 …
.net entity-framework asp.net-core asp.net-core-mvc entity-framework-coreOn an ASP.NET Core project I have the following on Startup: services.AddDbContext<Context>(x => x.…
c# asp.net-core entity-framework-coreI am trying to figure out how to run a specific migration from the package manager in nuget. I have …
c# entity-framework-core