-
Notifications
You must be signed in to change notification settings - Fork 856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.8.1版本之后使用SetSource更新数据报错 #521
Comments
实体类发一下,报的什么错 |
我试了实体类标签 [Key]
public long ID { get; set; }
[Description("名字")]
public string Name { get; set; }
[Description("账号")]
[Column(IsNullable = false)]
public string Account { get; set; }
[Description("名称拼音首字母")]
public string SpellCode { get; set; }
[Description("乐观锁")]
[Column(IsVersion = true, InsertValueSql = "1")]
public long Version { get; set; } 如果 [Column(IsNullable = false)] 不使用就不会报错 使用了就会报错 |
我扩展了Aop 增加了SnowflakeAttribute 标签判断 去除这段就不会报错 增加了就会产生上述问题 |
问题重现了,确实是个 bug,是 1.8.1 改出来的 |
好的 |
bug 这个时候产生的。准备发布 1.8.2、1.9.1、1.10.2 修复该问题。 |
1.8.2、1.9.1、1.10.2 和当前 2.0.0-preview 最新版本一样 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
v1.8.1不会报错 1.8.1以上的版本会报错
The text was updated successfully, but these errors were encountered: