MySQL安装好了,今天跟大家交流一下怎么利用EntityFramework的CodeFirst在MySQL数据库中创建数据库
目标框架:.NET Framework 4
第一步:新建一个项目,然后添加如下的引用,这些引用可以在NuGet中添加,也可以到官网中下载然后添加
第二步:在配置文件中添加数据库节点配置
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace codeFIrst4
{
//顾客类
public class customer
{
[Key]
//顾客id
public string id { get; set; }
//顾客姓名
public string cusName { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Text;
namespace codeFIrst4
{
//数据库上下文
public class HotelDBContext:DbContext
{
public HotelDBContext()
: base("name=conncodefirst")
{
}
public DbSet Customer { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace codeFIrst4
{
class Program
{
static void Main(string[] args)
{
HotelDBContext dbCOntext = new HotelDBContext();
bool flag=dbCOntext.Database.CreateIfNotExists();
if (flag==true)
{
Console.WriteLine("MySQL数据库创建成功!");
}
else
{
Console.WriteLine("MySQL数据库创建失败!");
}
}
}
}
通过上面简单的交流,我想大家都应该明白怎么用CodeFirst来创建一个MySQL数据库了,一开始学习EF的时候,我们都是在SQL Server数据库中建立映射,那么MySQL数据库和SQL Server数据库的区别在哪里呢?第一点:引用不同,MySQL需要引用MySql.Data;第二点:配置文件中的数据库节点配置不同。除了以上的两点,其他地方都差不多。