- 修复 Firebird CodeFirst.SyncStructure 自增错误;d154a463a5d239c0a4ce848f2ac9c75dca84ec55

This commit is contained in:
2881099
2022-12-02 22:13:35 +08:00
parent ad0df485a3
commit e3d526ec6d
4 changed files with 33 additions and 4 deletions

View File

@ -1,4 +1,5 @@
using FreeSql;
using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
@ -57,3 +58,11 @@ public class User1 : BaseEntity<User1, Guid>
[MaxLength(4000)]
public string Description { get; set; }
}
public class IdentityTable
{
[Column(IsIdentity = true, IsPrimary = true)]
public int id { get; set; }
public string name { get; set; }
}