码迷,mamicode.com
首页 > Web开发 > 详细

ABP.Net Core使用教程(一)启动模版项目

时间:2018-11-01 13:45:15      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:serve   nbsp   spn   get   迁移   cal   连接   efault   style   

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层用Nuget安装添加Pomelo.EntityFrameworkCore.MySql

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,运行项目

ABP.Net Core使用教程(一)启动模版项目

标签:serve   nbsp   spn   get   迁移   cal   连接   efault   style   

原文地址:https://www.cnblogs.com/zheyiw/p/9888327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!