Add unit test

This commit is contained in:
sunkaixuan
2022-10-10 09:00:10 +08:00
parent 685b19f3df
commit 8c187165ae
2 changed files with 17 additions and 0 deletions

View File

@@ -14,6 +14,16 @@ namespace SqlSugarSelect
[SqlSugar.SugarColumn(ColumnDataType = "ntext", IsJson = true)]
public Guid[] Ids { get; set; }
}
public class ViewTestModel1
{
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
public string Titlt { get; set; }
[SqlSugar.SugarColumn(ColumnDataType = "ntext", IsJson = true,IsIgnore =true)]
public Guid[] Ids { get; set; }
}
[SqlSugar.SugarTable("UnitTestModel2")]
public class TestModel2
{