ABP.Net Core使用教程(一)啟動模版專案
阿新 • • 發佈:2018-11-01
1,下載ABP模版:基於.NetCore的Vue或者Anjular單頁面應用
https://aspnetboilerplate.com/
2,用VS2017開啟解決方案
3,修改資料庫連線,只要使用者名稱和密碼對就可以,ABP會自動建庫
如果使用MySQL,請看步驟4,步驟5
如果使用預設的SQL Server,跳過步驟4,步驟5
"ConnectionStrings": { "Default": "Server=localhost; Database=AbpDemoDb; Uid=root; Pwd=123456;" }
4,修改為使用MySQL:在XXX.EntityFrameworkCore層用
5,修改 XXXDbContextConfigurer類的資料庫連線配置
namespace AbpDemo.EntityFrameworkCore { public static class AbpDemoDbContextConfigurer { public static void Configure(DbContextOptionsBuilder<AbpDemoDbContext> builder, string connectionString) {//builder.UseSqlServer(connectionString); builder.UseMySql(connectionString); } public static void Configure(DbContextOptionsBuilder<AbpDemoDbContext> builder, DbConnection connection) { //builder.UseSqlServer(connection); builder.UseMySql(connection); } } }
6,資料遷移
7,執行專案