創(chuàng)建CRUD動(dòng)作方法及視圖
參照VS自帶的基架(Scaffold)系統(tǒng)-MVC Controller with views, using Entity Framework我們來(lái)創(chuàng)建CRUD方法。
① 將上一篇的Models/UserContext.cs文件中的用來(lái)指定使用的數(shù)據(jù)庫(kù)邏輯的OnConfiguring
方法刪除,將邏輯移到Startup.cs文件中的ConfigureServices
方法中。
public void ConfigureServices(IServiceCollection services){ string connectionString = Configuration.GetConnectionString("MyConnection"); services.AddDbContext<UserContext>(options => options.UseMySQL(connectionString)); // Add framework services. services.AddMvc(); }