AspNetCore使用MySQL

既然NetCore开源,那么也使用开源的MySQL的数据库呢?当然NetCore不止单单配MSSQL数据库而已。今天我来讲解NetCore怎么使用MySQL进行开发。

首先新建一个NetCore项目

AspNetCore使用MySQL_第1张图片

 

 

AspNetCore使用MySQL_第2张图片

然后写两个类放在Model里面

public class Lexan
    {
        private LexanContext lexanContext;
        public string Name { get; set; }
        public int Sex { get; set; }
        public int Age { get; set; }
    }

 AspNetCore使用MySQL_第3张图片

 

public class LexanContext
    {
        public string ConnectionString { get; set; }
        public LexanContext(string connectionString)
        {
            ConnectionString = connectionString;
        }
        private MySqlConnection GetConnection()
        {
            return new MySqlConnection(ConnectionString);
        }
        public List GetLexan()
        {
            List list = new List();
            using (MySqlConnection connection=GetConnection())
            {
                connection.Open();
                MySqlCommand command = new MySqlCommand("select * from Lexan",connection);
                using (MySqlDataReader reader=command.ExecuteReader())
                {
                    while (reader.Read())
                    {
                        list.Add(new Lexan()
                        {
                            Name=reader.GetString("Name"),
                            Sex=reader.GetInt32("Sex"),
                            Age=reader.GetInt32("Age")
                        });
                    }
                }
            }
            return list;
        }
    }

 AspNetCore使用MySQL_第4张图片

 

 AspNetCore使用MySQL_第5张图片

 

然后在NuGet库里安装个插件才能完成连接MySQL

AspNetCore使用MySQL_第6张图片

AspNetCore使用MySQL_第7张图片

 

然后添加一个控制器

AspNetCore使用MySQL_第8张图片

 public IActionResult Index()
        {
            LexanContext wordcontext = HttpContext.RequestServices.GetService(typeof(AspNetCoreUseMySQL.Model.LexanContext)) as LexanContext;
            return View(wordcontext.GetLexan());
            //return View();
        }

 AspNetCore使用MySQL_第9张图片

然后添加一个MVC 视图

AspNetCore使用MySQL_第10张图片

 

然后添加如下代码,你也可以根据自己的情况稍作修改

AspNetCore使用MySQL_第11张图片

 

@model IEnumerable
@{
    ViewBag.Title = "Lexan";
}

Lexan

@foreach (var item in Model) { }
名字 性别 年龄
@Html.DisplayFor(modelitem => item.Name) @Html.DisplayFor(modelitem => item.Sex) @Html.DisplayFor(modelitem => item.Age)

 

然后修改Startup类,添加如下代码

 services.Add(new ServiceDescriptor(typeof(LexanContext), new LexanContext(Configuration.GetConnectionString("DefaultConnection"))));

 

AspNetCore使用MySQL_第12张图片

然后往appsettings.json里写连接字符串,这里注意一下,每个人的密码都不一样,你也要稍作修改,不然会出现连接出错

AspNetCore使用MySQL_第13张图片

我们来创建一个数据库,并创建表,然后往里面写一条数据

  create database AspNetCoreUseMySql;
  use AspNetCoreUseMySql; 
  show tables;
  create table Lexan (name varchar(20),sex char(1),Age char(5));
  describe Lexan;
  insert into Lexan values('Lexan','0','22');
  select * from Lexan;

 

AspNetCore使用MySQL_第14张图片

全部工作完成了,我们来运行看看效果

AspNetCore使用MySQL_第15张图片

 

AspNetCore使用MySQL_第16张图片

最后博主在这里说一下,凡是本博主的博文,麻烦添加原文地址,谢谢!所有博客文章都来自Lexan的博客,你也可以关注博主的博文地址http://www.cnblogs.com/R00R/

你可能感兴趣的:(AspNetCore使用MySQL)