- 修复 SqlServer 自增 BulkUpdate bug;#1476

This commit is contained in:
2881099
2023-03-29 19:07:19 +08:00
parent 8c2ebe3234
commit 1e23938e4e
5 changed files with 101 additions and 10 deletions

View File

@ -27,6 +27,16 @@ public class RoleUser1 : BaseEntity<RoleUser1>
public User1 User1 { get; set; }
}
public class IdentityUser1
{
[Column(IsIdentity = true)]
public int Id { get; set; }
[MaxLength(32)]
public string Username { get; set; }
[MaxLength(64)]
public string Nickname { get; set; }
}
public class User1 : BaseEntity<User1, Guid>
{
public int GroupId { get; set; }