码迷,mamicode.com
首页 > 数据库 > 详细

学习asp.net core + Ef+mysql建立连接

时间:2017-11-05 20:05:21      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:ldb   sql   pwd   mysq   password   代码   war   desc   tco   

注意事项:
1、使用前用nuget导入Microsoft.EntityFrameworkCore.Tools和MySql.Data.EntityFrameworkCore
2、DataContext必须声明一个构造函数接受一个dbcontextoptions < DataContext >必须通过它来为DbContext基构造函数。
3、连接字符串一定要加 sslmode=none
操作代码:
datacontext类
public class DataContext:DbContext
{
  public DataContext(DbContextOptions<DataContext> options): base(options)
  {
  }
}
在startuo类里的ConfigureServices增加
var connection = Configuration.GetConnectionString("SqlServerConnection");
services.AddDbContext<DataContext>(options => options.UseMySQL(connection));
在appsettings里添加数据库连接字符串

{
  "Logging": {
    "IncludeScopes": false,
    "LogLevel": {
    "Default": "Warning"
  }
},
  "ConnectionStrings": {
  //"SqlServerConnection": "Data Source=localhost;Database=schooldb;User ID=root;Password=123.q;pooling=true;CharSet=utf8;port=3306;sslmode=none",
  "SqlServerConnection": "server=localhost;userid=root;pwd=;port=3306;database=schooldb;sslmode=none;"
  }
}

学习asp.net core + Ef+mysql建立连接

标签:ldb   sql   pwd   mysq   password   代码   war   desc   tco   

原文地址:http://www.cnblogs.com/powerMG/p/7788238.html

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