.net core 通过Sqlsugar生成实体

通过替换字符串的方式生成代码,其他代码也可以通这种方式生成

直接上代码

设置模板

将这几个模板文件设置为:嵌入资源

模板内容:

csharp 复制代码
using SqlSugar;

namespace {Namespace}.Domain.Admin.{ModelName};
/// <summary>
/// {TableDisplayName}
///</summary>
[SugarTable("{TableName}")]
public class {ModelName}Entity
{
    {AttributeList}
}

生成代码

csharp 复制代码
 /// <summary>
 /// 预览代码
 /// </summary>
 /// <param name="currentTableName">表名</param>
 /// <returns></returns>
 [HttpGet]
 public ProviewCodeOutput PreviewCode(string currentTableName)
 {
 	  //我是在其他类里面生成的代码,所以通过dll加载嵌入的资源
     // 通过 DLL 加载资源 
     var assemblyPath = Path.Combine(AppContext.BaseDirectory, "XR.Host.dll");

     var assembly = AssemblyLoadContext.Default.LoadFromAssemblyPath(assemblyPath);

     var resourceName = assembly.GetManifestResourceNames().FirstOrDefault(a => a.Contains("ModelTemplate.txt"));

     var file = assembly.GetManifestResourceStream(resourceName);
     //实体模板
     var modelTemplate = new StreamReader(file).ReadToEnd();
     //仓储接口模板
     var IrepostoryTemplate = new StreamReader(
         assembly.GetManifestResourceStream(assembly.GetManifestResourceNames().FirstOrDefault(a => a.Contains("IRepositoryTemplate.txt")))
         ).ReadToEnd();
     //仓储接口模板
     var repostoryTemplate = new StreamReader(
         assembly.GetManifestResourceStream(assembly.GetManifestResourceNames().Where(a => a.Contains("RepositoryClassTemplate.txt")).First())
         ).ReadToEnd();


     var orm = LazyGetRequiredService<IUserRepository>().Orm;

     var table = orm.DbMaintenance.GetTableInfoList(true);

     //命名空间
     var Namespace = Assembly.GetExecutingAssembly().GetName().Name;

     var parentPath = new DirectoryInfo(Environment.CurrentDirectory).Parent + $"\\{Namespace}";

     var result = new ProviewCodeOutput();

     foreach (var tableInfo in table)
     {
         if (tableInfo.Name == currentTableName)
         {
             var modelName = tableInfo.Name.Replace("SYS_", "").Replace("TB_", "").Replace("TN_", "");
             modelName = ConvertToCamelCase(modelName);

             var tableColumn = orm.DbMaintenance.GetColumnInfosByTableName(tableInfo.Name);
             var attributes = BuildColumn(tableColumn);
			//通过替换字符串的方式生成代码
             result.ModalCode = modelTemplate.Replace("{Namespace}", Namespace)
                 .Replace("{ModelName}", modelName)
                 .Replace("{TableName}", tableInfo.Name)
                 .Replace("{TableDisplayName}", tableInfo.Description)
                 .Replace("{AttributeList}", attributes);

         }
     }
     return result;
 }
 private string BuildColumn(List<DbColumnInfo> columnInfos)
 {
     var attributes = new StringBuilder();
     foreach (var columnInfo in columnInfos)
     {
         attributes.Append("\r\n    /// <summary>");
         attributes.Append($"\r\n   /// {columnInfo.ColumnDescription}");
         attributes.Append("\r\n    /// </summary>");
         attributes.Append($"\r\n   [SugarColumn({(columnInfo.IsPrimarykey ? "IsPrimaryKey = true," : "")} ColumnName = \"{columnInfo.DbColumnName}\", {(columnInfo.IsNullable ? "IsNullable = true," : "")} ColumnDescription = \"{columnInfo.ColumnDescription}\")]");
         attributes.Append($"\r\n   public {SetDataType(columnInfo.DataType)}{(columnInfo.IsNullable ? "?" : "")} {ConvertToCamelCase(columnInfo.DbColumnName)} {{ get; set; }}");

     }
     return attributes.ToString();
 }
 private string SetDataType(string dataType)
 {
     dataType = dataType.ToLower();
     var result = dataType;
     switch (dataType)
     {
         case "int32":
             result = typeof(int).Name;
             break;
         case "int64":
             result = typeof(int).Name;
             break;
         case "datetime":
             result = typeof(DateTime).Name;
             break;
     }
     return result;
 }
 /// <summary>
 /// 将驼峰转换为字符串
 /// </summary>
 /// <param name="input"></param>
 /// <returns></returns>
 private string ConvertToCamelCase(string input)
 {
     if (string.IsNullOrEmpty(input))
         return input;
     var text = input.Split('_');
     var camelTxt = "";
     TextInfo textInfo = CultureInfo.CurrentCulture.TextInfo;
     foreach (var c in text)
     {
         camelTxt += textInfo.ToTitleCase(c.ToLower());
     }
     return camelTxt;
 }
相关推荐
全栈小51 天前
【C#】.net core 6.0 依赖注入常见问题之一,在构造函数使用的类,都需要注入到容器里,否则会提示如下报错,让DeepSeek找找原因,看看效果
c#·.netcore·依赖注入·deepseek
公子小六6 天前
ASP.NET Core WebApi+React UI开发入门详解
react.js·ui·c#·asp.net·.netcore
工藤新一OL6 天前
.netCore的winform程序如何调用webapi
c#·.net·.netcore·visual studio
江沉晚呤时7 天前
深入解析 C# 开闭原则(OCP):设计可扩展的系统
数据库·c#·系统安全·.netcore
江沉晚呤时9 天前
深入解析外观模式(Facade Pattern)及其应用 C#
java·数据库·windows·后端·microsoft·c#·.netcore
江沉晚呤时9 天前
深入解析代理模式(Proxy Pattern):设计与应用
安全·c#·系统安全·.netcore
小吴同学·11 天前
NET6 WebApi第5讲:中间件(源码理解,俄罗斯套娃怎么来的?);Web 服务器 (Nginx / IIS / Kestrel)、WSL、SSL/TSL
中间件·c#·.net·.netcore·.net core
江沉晚呤时11 天前
深入解析组合模式(Composite Pattern):概念、结构与应用
java·开发语言·后端·c#·.netcore
江沉晚呤时12 天前
精益架构设计:深入理解与实践 C# 中的单一职责原则
java·jvm·算法·log4j·.netcore·net
世界太过浮夸13 天前
.net core集成MQTT服务端
.netcore