mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-21 02:58:05 +08:00
Add unit test
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user