Entity Framework Core in Full .Net?
问题 Is There Any Way To Implement Entity Framework Core In Full .Net Framework Console Application? 回答1: First you need to create console application with full .net framework, Second install these packages using package manager console, Install-Package Microsoft.EntityFrameworkCore.SqlServer Install-Package Microsoft.EntityFrameworkCore.Tools –Pre Now you need to create your model and context namespace ConsoleEfCore { class Program { static void Main(string[] args) { MyContext db = new MyContext(