首页 > 数据库 > mysql教程 > 如何从 SQL Server 表生成 C# 类?

如何从 SQL Server 表生成 C# 类?

DDD
发布: 2024-12-19 03:49:08
原创
194 人浏览过

How Can I Generate C# Classes from SQL Server Tables?

从 SQL Server 表生成类

从数据库表生成类可以简化数据访问并提供数据结构的有形表示。本文探讨了一种将实体创建为简单类的简单方法。

创建实体

让我们考虑一个名为“Person”的表,其架构如下:

+----+-------+----------------+
| ID | Name  |     Phone      |
+----+-------+----------------+
| 1 | Alice | (555) 555-5550 |
| 2 | Bob   | (555) 555-5551 |
| 3 | Cathy | (555) 555-5552 |
+----+-------+----------------+
登录后复制

为了生成相应的类,我们可以利用以下SQL脚本:

set @TableName sysname = 'TableName'
declare @Result varchar(max) = 'public class ' + @TableName + '
{'

select @Result = @Result + '
    public ' + ColumnType + NullableSign + ' ' + ColumnName + ' { get; set; }
'
from
(
    select 
        replace(col.name, ' ', '_') ColumnName,
        column_id ColumnId,
        case typ.name 
            when 'bigint' then 'long'
            when 'binary' then 'byte[]'
            when 'bit' then 'bool'
            when 'char' then 'string'
            when 'date' then 'DateTime'
            when 'datetime' then 'DateTime'
            when 'datetime2' then 'DateTime'
            when 'datetimeoffset' then 'DateTimeOffset'
            when 'decimal' then 'decimal'
            when 'float' then 'double'
            when 'image' then 'byte[]'
            when 'int' then 'int'
            when 'money' then 'decimal'
            when 'nchar' then 'string'
            when 'ntext' then 'string'
            when 'numeric' then 'decimal'
            when 'nvarchar' then 'string'
            when 'real' then 'float'
            when 'smalldatetime' then 'DateTime'
            when 'smallint' then 'short'
            when 'smallmoney' then 'decimal'
            when 'text' then 'string'
            when 'time' then 'TimeSpan'
            when 'timestamp' then 'long'
            when 'tinyint' then 'byte'
            when 'uniqueidentifier' then 'Guid'
            when 'varbinary' then 'byte[]'
            when 'varchar' then 'string'
            else 'UNKNOWN_' + typ.name
        end ColumnType,
        case 
            when col.is_nullable = 1 and typ.name in ('bigint', 'bit', 'date', 'datetime', 'datetime2', 'datetimeoffset', 'decimal', 'float', 'int', 'money', 'numeric', 'real', 'smalldatetime', 'smallint', 'smallmoney', 'time', 'tinyint', 'uniqueidentifier') 
            then '?' 
            else '' 
        end NullableSign
    from sys.columns col
        join sys.types typ on
            col.system_type_id = typ.system_type_id AND col.user_type_id = typ.user_type_id
    where object_id = object_id(@TableName)
) t
order by ColumnId

set @Result = @Result  + '
}'

print @Result
登录后复制

通过执行此脚本,您将获得“Person”表的相应类定义,然后可以在您的应用程序中使用它。

这种方法使您可以控制对生成的类进行检查,确保它满足您项目的特定要求。

以上是如何从 SQL Server 表生成 C# 类?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板