五、SQLSugar 配置实体(CodeFirstDBFirst)

2024-01-14 11:59

本文主要是介绍五、SQLSugar 配置实体(CodeFirstDBFirst),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

配置实体 - SqlSugar 5x - .NET果糖网https://www.donet5.com/Home/Doc?typeId=1182一、Nuget 引入 SqlSugarCore

二、新建实体

using SqlSugar;namespace Model.DBEntity
{/// <summary>/// 国家地区表/// </summary>[SugarTable("Country")]//当和数据库名称不一样可以设置表别名 指定表明public class Country{/// <summary>/// 自增主键ID,可给多个字段设置主键达到双主键、复合主键、联合主键、多个主键/// </summary>[SugarColumn(IsPrimaryKey =true, IsIdentity = true,ColumnDescription="主键")]//设置主键,设置自增,字段注释public int FID { get; set; }/// <summary>/// 上级ID/// </summary>[SugarColumn(ColumnName = "FPID", ColumnDescription = "上级主键")]//数据库列名与实体不一样,指定数据库字段名public int FPID { get; set; }/// <summary>/// 名称/// </summary>[SugarColumn(ColumnDescription = "名称")]public string? FName { get; set; }/// <summary>/// 递归自己/// </summary>[SugarColumn(IsIgnore =true, ColumnDescription = "下级集合")]//IsIgnore	ORM不处理该列 【忽略】public List<Country>? CountryList { get; set; }}
}

三、同步到数据库,控制台代码

using DBSyncTool;
using SqlSugar;
using System.Reflection;// See https://aka.ms/new-console-template for more information//数据库账号密码
string user = "sa";
string pwd = "***";
//
//string user = "yfl";
//string pwd = "ydl..yfl";//打印方法
var Begin = () => Console.WriteLine("┌──────────────────────────────────────────────────────────┐");
var Content = (string context) => Console.WriteLine(@$"│ {context} ");
var End = () => Console.WriteLine("└──────────────────────────────────────────────────────────┘");
var All = (string context) =>
{Begin();Content(context);End();
};
var ReStart = () =>
{for (int i = 0, m = 1; i < 30; i++)for (int l = 0; l < new[] { 5, 6, 7, 6, 8, 10, 3, 10, 4, 13, 1, 13, 1, 87, 1, 27, 4, 23, 7, 20, 11, 16, 16, 11, 20, 7, 24, 3, 27, 1 }[i]; l++, m++)Console.Write((i % 2 > 0 ? "love"[m % 4] : ' ') + (m % 29 > 0 ? "" : "\n"));Console.WriteLine();
};//数据库操作类型
string[] _syncarr = { "DBFirst", "CodeFirst", "AddDataBase", "Back" };//获取的到数据库列表
Fun f = new();
List<string> _dbarr = global::DBSyncTool.Fun.GetDBList(user, pwd);All("请谨慎做出你的选择,因为这是不可撤销的");
All("CodeFirst需自行代码调整需要同步的Table");
ChooseDB:
Begin();
Content("请选择数据库名称:");
int inx = 0;
foreach (string s in _dbarr)
{Content(@$"{++inx}:{s}");
}
End();int? dbstr = 0;
Wdb:
try
{dbstr = Convert.ToInt32(Console.ReadLine()) - 1;while (dbstr >= _dbarr.Count || dbstr < 0){All("请输入有效的数据库编号! ");dbstr = Convert.ToInt32(Console.ReadLine()) - 1;}
}
catch (Exception)
{All("请输入有效的数据库编号! ");goto Wdb;
}Begin();
Content(@$"【{_dbarr[(int)dbstr]}】");
Content("请选择数据库结构同步方式:");
inx = 0;
foreach (string s in _syncarr)
{Content(@$"{++inx}:{s}");
}
End();int? type = 0;
Wsync:
try
{type = Convert.ToInt32(Console.ReadLine()) - 1;while (type >= _syncarr.Length || type < 0){Content(@$"【{_dbarr[(int)dbstr]}】");All("请输入有效的同步方式编号!");type = Convert.ToInt32(Console.ReadLine()) - 1;}
}
catch (Exception)
{Content(@$"【{_dbarr[(int)dbstr]}】");All("请输入有效的同步方式编号!");goto Wsync;
}string? sure = "";
if (_syncarr[(int)type] == "Back")
{ReStart();goto ChooseDB;
}
else
{Begin();Content($@"请确认您选择的数据库同步方式:【{_dbarr[(int)dbstr]}】【{_syncarr[(int)type]}】");Content("1 : 确认!开始同步");Content("2 : 错误!重新选择");End();sure = Console.ReadLine();
}while (string.IsNullOrEmpty(sure) || (sure != "1" && sure != "2"))
{Content(@$"【{_dbarr[(int)dbstr]}】【{_syncarr[(int)type]}】");All("请重新输入有效的值!");sure = Console.ReadLine();
}if (sure == "1")
{SqlSugarClient Db = new(new ConnectionConfig(){ConnectionString = @$"Server=.;User Id={user};Password={pwd};Database={_dbarr[(int)dbstr]}",//数据库链接字符串DbType = DbType.SqlServer,//指定数据库类型IsAutoCloseConnection = true,//链接使用完后是否自动释放InitKeyType = InitKeyType.Attribute,//从实体特性中读取主键自增列信息ConfigureExternalServices = new ConfigureExternalServices(){EntityNameService = (type, entity) =>{entity.IsDisabledDelete = true;//全局禁止删除列}}});All("开始同步!请勿关闭程序...  ");switch (_syncarr[(int)type]){case "DBFirst":// 应用程序所在目录,即bin/debug//方法1、Environment.CurrentDirectory 取得或设置当前工作目录的完整限定路径//方法2、AppDomain.CurrentDomain.BaseDirectory 获取基目录,它由程序集冲突解决程序用来探测程序集DirectoryInfo exePath = new(Environment.CurrentDirectory);string pathFullName = exePath.Parent.Parent.Parent.FullName;//项目所在目录,即项目最外层目录Db.DbFirst.IsCreateAttribute().CreateClassFile(@$"{pathFullName}\\Model\\DBEntity", "Model.DBEntity");//文件地址,指定实体命名空间break;case "CodeFirst":Type[] types = Assembly.LoadFrom("DBSyncTool.dll")//如果 .dll报错,可以换成 xxx.exe 有些生成的是exe .GetTypes().Where(it => it.FullName.Contains("Model.DBEntity"))//命名空间过滤,当然你也可以写其他条件过滤.ToArray();//断点调试一下是不是需要的Type,不是需要的在进行过滤//同步数据表结构Db.DbMaintenance.CreateDatabase();Db.CodeFirst.SetStringDefaultLength(1024).InitTables(types);//多表同步break;case "AddDataBase":string? dbs = "";WDBS:Content(@$"请输入要新增的数据库名称");dbs = Console.ReadLine();if (string.IsNullOrEmpty(dbs)){All("请重新输入有效的值!");goto WDBS;}Db = new(new ConnectionConfig(){ConnectionString = @$"Server=.;User Id={user};Password={pwd};Database={dbs}",//数据库链接字符串DbType = DbType.SqlServer,//指定数据库类型IsAutoCloseConnection = true,//链接使用完后是否自动释放InitKeyType = InitKeyType.Attribute,//从实体特性中读取主键自增列信息});Db.DbMaintenance.CreateDatabase();break;}
}
else
{ReStart();goto ChooseDB;
}
All("...   ...   ...");
All("结束同步!已自动关闭程序...");
Console.ReadKey();

!!!请注意如下图中对应的命名空间和文件夹名称

 

这篇关于五、SQLSugar 配置实体(CodeFirstDBFirst)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/605084

相关文章

Zookeeper安装和配置说明

一、Zookeeper的搭建方式 Zookeeper安装方式有三种,单机模式和集群模式以及伪集群模式。 ■ 单机模式:Zookeeper只运行在一台服务器上,适合测试环境; ■ 伪集群模式:就是在一台物理机上运行多个Zookeeper 实例; ■ 集群模式:Zookeeper运行于一个集群上,适合生产环境,这个计算机集群被称为一个“集合体”(ensemble) Zookeeper通过复制来实现

CentOS7安装配置mysql5.7 tar免安装版

一、CentOS7.4系统自带mariadb # 查看系统自带的Mariadb[root@localhost~]# rpm -qa|grep mariadbmariadb-libs-5.5.44-2.el7.centos.x86_64# 卸载系统自带的Mariadb[root@localhost ~]# rpm -e --nodeps mariadb-libs-5.5.44-2.el7

hadoop开启回收站配置

开启回收站功能,可以将删除的文件在不超时的情况下,恢复原数据,起到防止误删除、备份等作用。 开启回收站功能参数说明 (1)默认值fs.trash.interval = 0,0表示禁用回收站;其他值表示设置文件的存活时间。 (2)默认值fs.trash.checkpoint.interval = 0,检查回收站的间隔时间。如果该值为0,则该值设置和fs.trash.interval的参数值相等。

NameNode内存生产配置

Hadoop2.x 系列,配置 NameNode 内存 NameNode 内存默认 2000m ,如果服务器内存 4G , NameNode 内存可以配置 3g 。在 hadoop-env.sh 文件中配置如下。 HADOOP_NAMENODE_OPTS=-Xmx3072m Hadoop3.x 系列,配置 Nam

wolfSSL参数设置或配置项解释

1. wolfCrypt Only 解释:wolfCrypt是一个开源的、轻量级的、可移植的加密库,支持多种加密算法和协议。选择“wolfCrypt Only”意味着系统或应用将仅使用wolfCrypt库进行加密操作,而不依赖其他加密库。 2. DTLS Support 解释:DTLS(Datagram Transport Layer Security)是一种基于UDP的安全协议,提供类似于

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

沁恒CH32在MounRiver Studio上环境配置以及使用详细教程

目录 1.  RISC-V简介 2.  CPU架构现状 3.  MounRiver Studio软件下载 4.  MounRiver Studio软件安装 5.  MounRiver Studio软件介绍 6.  创建工程 7.  编译代码 1.  RISC-V简介         RISC就是精简指令集计算机(Reduced Instruction SetCom

log4j2相关配置说明以及${sys:catalina.home}应用

${sys:catalina.home} 等价于 System.getProperty("catalina.home") 就是Tomcat的根目录:  C:\apache-tomcat-7.0.77 <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss} [%t] %-5p %c{1}:%L - %msg%n" /> 2017-08-10

DM8数据库安装后配置

1 前言 在上篇文章中,我们已经成功将库装好。在安装完成后,为了能够更好地满足应用需求和保障系统的安全稳定运行,通常需要进行一些基本的配置。下面是一些常见的配置项: 数据库服务注册:默认包含14个功能模块,将这些模块注册成服务后,可以更好的启动和管理这些功能;基本的实例参数配置:契合应用场景和发挥系统的最大性能;备份:有备无患;… 2 注册实例服务 注册了实例服务后,可以使用系统服务管理,

配置InfiniBand (IB) 和 RDMA over Converged Ethernet (RoCE) 网络

配置InfiniBand (IB) 和 RDMA over Converged Ethernet (RoCE) 网络 服务器端配置 在服务器端,你需要确保安装了必要的驱动程序和软件包,并且正确配置了网络接口。 安装 OFED 首先,安装 Open Fabrics Enterprise Distribution (OFED),它包含了 InfiniBand 所需的驱动程序和库。 sudo