首頁 > 資料庫 > mysql教程 > 如何從 SQL Server 資料庫表產生 C# 實體類別?

如何從 SQL Server 資料庫表產生 C# 實體類別?

DDD
發布: 2024-12-17 08:15:24
原創
569 人瀏覽過

How can I generate C# entity classes from SQL Server database tables?

從資料庫表產生實體類別

直接從 SQL Server 表物件建立實體類別是在程式碼中表示資料庫物件的便捷方法。具體操作方法如下:

示例表:

+----+-------+----------------+
| ID | Name  |     Phone      |
+----+-------+----------------+
| 1 | Alice | (555) 555-5550 |
| 2 | Bob   | (555) 555-5551 |
| 3 | Cathy | (555) 555-5552 |
+----+-------+----------------+
登入後複製

實體類生成:

生成Tabl eName表的實體類,執行以下T-SQL程式碼:

declare @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
登入後複製

此程式碼將使用您提供的語法產生一個實體類別:

public class Person 
{
    public string Name { get;set; }
    public string Phone { get;set; }
}
登入後複製

以上是如何從 SQL Server 資料庫表產生 C# 實體類別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板