update kingbaseES

This commit is contained in:
28810
2020-05-31 10:42:26 +08:00
parent 6f53658dde
commit 909fe9bc7a
8 changed files with 19 additions and 171 deletions

View File

@ -84,4 +84,12 @@ namespace repository_01
{
bool IsDeleted { get; set; }
}
public class TestSoftDelete : ISoftDelete
{
[Column(IsIdentity = true)]
public int Id { get; set; }
public string Title { get; set; }
public bool IsDeleted { get; set; }
}
}