- 修复 CodeFirst IsNullable 迁移脚本重复 NOT NULL 语法错误;

This commit is contained in:
28810
2020-03-27 17:35:59 +08:00
parent d4e73641a4
commit dbc323a22c
13 changed files with 37 additions and 1 deletions

View File

@ -21,6 +21,9 @@ namespace FreeSql.Tests.Odbc.Dameng
public Guid Id { get; set; }
[Column(StringLength = 50)]
public string Title { get; set; }
[Column(IsNullable = false, StringLength = 50)]
public string TitleSub { get; set; }
}
[Fact]