You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Fact]
public async Task Test2()
{
var freeSql = provider.GetService<IFreeSql>();
var model = await freeSql.Select<TestEntity1>().FirstAsync(s => new
{
State = ((int)s.State).ToString()
});
}
public class TestEntity1
{
[Column(Name = "id", IsIdentity = true, IsPrimary = true)]
public int Id { get; set; }
public TestState State { get; set; }
}
FreeSql版本 :3.2.821(最新几个版本试了都有这个问题 3.2.6n没问题)
数据库:Postgres 14
The text was updated successfully, but these errors were encountered:
FreeSql版本 :3.2.821(最新几个版本试了都有这个问题 3.2.6n没问题)
数据库:Postgres 14
The text was updated successfully, but these errors were encountered: