EntityFramework Core运行环境,安装NuGget包:
//Sql Server Database Provider PM> Install-Package Microsoft.EntityFrameworkCore.SqlServer
//提供Add-Migration,Update-Database等Powershell命令 PM> Install-Package Microsoft.EntityFrameworkCore.Tools
2. 控制台程序
2.1 基础代码
实体类:Role.cs
using System; using System.Collections.Generic; using System.Text; namespace Libing.App.Models.Entities { public class Role { public int RoleID { get; set; } public string RoleName { get; set; } } }