(1)首先建立一个.net core web api web项目;mysql
(2)由于咱们使用的是ef链接mysql数据库,经过NuGet安装MySql.Data.EntityFrameworkCore,以来的ef core 也会被安装.ios
(2)在appsettings.json中添加以下数据库链接字符串.web
(2)建立数据库对应的model--AppUsersql
public class AppUser { public int Id { get; set; } public string CompanyName { get; set; } public string Name { get; set; } }
(3)建立dbcontext数据库
public class UserContext:DbContext { public UserContext(DbContextOptions<UserContext> options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<AppUser>() .ToTable("Users") .HasKey(u => u.Id); base.OnModelCreating(modelBuilder); } public DbSet<AppUser> Users { get; set; } }
(4)在startup.cs中配置数据库链接信息。并插入一条记录。json
public IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddDbContext<UserContext>(options => { options.UseMySQL(Configuration.GetConnectionString("MysqlUser")); }); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. app.UseHsts(); } app.UseHttpsRedirection(); app.UseMvc(); InitUserDatabase(app); } public void InitUserDatabase(IApplicationBuilder app) { using (var scope = app.ApplicationServices.CreateScope()) { var userContext = scope.ServiceProvider.GetRequiredService<UserContext>(); if (!userContext.Users.Any()) { userContext.Users.Add(new Models.AppUser { Name = "daniel cui", CompanyName = "bat company" }); userContext.SaveChanges(); } } }
(5)执行Add-Migration init生成Migrations文件夹,执行Update-Database init生成数据库并生成表.api
(6)启动程序并想Users表插入一条记录.app
可是会产生错误信息。目前尚未完美解决。ide