Closed pigwing closed 3 years ago
上代码 和实体
不规范表,我只能作兼容处理,已知的情况可以发给我
public class MyEntity { [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "Id")] public long Id { get; set; } public string A {get;set} }
SqlSugarClient.Insertable
@donet5 针对postgresql的情况,默认是区分大小写的.然后也配置了PgSqlIsAutoToLower = false,其他都没问题,就是需要插入并且返回自增长的Id的时候,把Id直接小写成了id,导致postgresql报id字段不存在,应该是要用Id这个字段的.
本地已解决 周一前会同步
ExecuteReturnBigIdentityAsync 等方法,postgresql设置了PgSqlIsAutoToLower = false不自动小写,但是Id依然会产生id小写.