C# 之 EF CodeFirst创建MySQL数据库

33 篇文章 10 订阅
3 篇文章 0 订阅

        MySQL安装好了,今天跟大家交流一下怎么利用EntityFramework的CodeFirst在MySQL数据库中创建数据库


目标框架:.NET Framework 4


第一步:新建一个项目,然后添加如下的引用,这些引用可以在NuGet中添加,也可以到官网中下载然后添加



第二步:在配置文件中添加数据库节点配置

<span style="font-family:Arial;font-size:10px;"><?xml version="1.0"?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
    </startup>
   <connectionStrings>
    <add name="conncodefirst" connectionString="server=192.168.24.184;port=3306;uid=root;pwd=123456;database=code" providerName="MySql.Data.MySqlClient"/>
  </connectionStrings>
</configuration></span>

第三步:
我们编写实体类

<span style="font-family:Arial;font-size:10px;">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; }
    }
    
}</span>


第四步: 编写数据库上下文

<span style="font-family:Arial;font-size:10px;">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> Customer { get; set; }
    }
}</span>


第五步:
编写创建数据库代码

<span style="font-family:Arial;font-size:10px;">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数据库创建失败!");
            }

        }
    }
}</span>




        通过上面简单的交流,我想大家都应该明白怎么用CodeFirst来创建一个MySQL数据库了,一开始学习EF的时候,我们都是在SQL Server数据库中建立映射,那么MySQL数据库和SQL Server数据库的区别在哪里呢?第一点:引用不同,MySQL需要引用MySql.Data;第二点:配置文件中的数据库节点配置不同。除了以上的两点,其他地方都差不多。


        




  • 4
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 7
    评论
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值