mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
## v0.4.9
- 修复 pgsql Enum 类型 formatSql bug; - 补充 表达式解析 Equals 为 = #28 #29;
This commit is contained in:
@ -34,6 +34,7 @@ namespace FreeSql.Tests.MySqlExpression {
|
||||
}
|
||||
class TestEqualsGuid {
|
||||
public Guid id { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@ -41,6 +42,7 @@ namespace FreeSql.Tests.MySqlExpression {
|
||||
var list = new List<object>();
|
||||
list.Add(select.Where(a => a.Title.Equals("aaa")).ToList());
|
||||
list.Add(g.sqlite.Select<TestEqualsGuid>().Where(a => a.id.Equals(Guid.Empty)).ToList());
|
||||
list.Add(g.sqlite.Select<TestEqualsGuid>().Where(a => a.IsDeleted.Equals(false)).ToList());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
Reference in New Issue
Block a user