自增逻辑修复。

This commit is contained in:
zhouyx
2022-10-16 10:18:13 +08:00
parent 0fff3a9c8d
commit 0f7bc98f45

View File

@@ -24,7 +24,7 @@ namespace SqlSugar
A.COLUMN_NAME AS DbColumnName,
A.TABLE_NAME AS TableName,
A.DATA_TYPE AS DataType,
C.ATTISAUTO as IsIdentity,
case when DATA_DEFAULT like 'NEXTVAL%' then true else false end as IsIdentity,
case when A.NULLABLE = 'Y' then true else false end as IsNullable ,
A.DATA_LENGTH AS LENGTH,
B.COMMENTS AS ColumnDescription,