当前位置:   article > 正文

.NET SqlSuger初次使用_.net core 控制台程序 使用sqlsugar

.net core 控制台程序 使用sqlsugar

前言

我之前在B站上面发视频说如何使用EF框架去生成实体类。我当时做了Mysql,Sql server,Sqlite的适配。但是下面评论区说SqlSuger很好用,而且很多公司都用SqlSuger。

B站视频:C#如何快速开发数据库业务,sql server sqlite mysql

在这里插入图片描述
在这里插入图片描述

SqlSuger

SqlSuger好像是一个国产的ORM框架,类似于Spirngboot的MyBatis。
SqlSuger官网

测试DB Fisrt和CodeFirst

新建一个.NET Core控制台程序

在这里插入图片描述
如下项目路径
在这里插入图片描述

  • Sqlsuger
    • DB:数据库实体类
      • Student实体类
    • Utils:SqlSuger操作对象
      • SqlSugerHelper
    • Program.cs

SqlSugerHelper

namespace SqlSuger.Utils
{
    public class SqlSugerHelper
    {
        public SqlSugarScope M_SqlSugarScope { get; set; } = new SqlSugarScope(new ConnectionConfig()
        {
            DbType = DbType.SqlServer,
            ConnectionString = "server=.;database=SqlSugarTest;uid=username;pwd=password",
            IsAutoCloseConnection = true,
        });

        public void CodeFirst()
        {
            M_SqlSugarScope.CodeFirst.InitTables(typeof(Student));

           
        }

        public void DB_First()
        {
        	//
            M_SqlSugarScope.DbFirst.IsCreateAttribute().CreateClassFile(@"DB");
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

Student实体类

	public partial class Student
    {
           [SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
           public int Id {get;set;}
       
           public string Name {get;set;}
       
           public int Age {get;set;}
        
           public DateTime CreateTime {get;set;}

    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

直接执行就可以了。

  • SqlSugerHelper.CodeFirst()。
    • 需要新建数据库,如果没有同名表则建表,如果有同名表则跳过。
  • SqlSugerHelper.DB_First()
    • 创建的文件在Debug文件夹的DB下面。命名空间默认为Models。如果需要改变则需要修改文件生成的配置,SqlSuger官网上面有配置教程,不过个人建议使用默认命名空间,即Models存放实体类。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/135118
推荐阅读
相关标签
  

闽ICP备14008679号