- 优化 GlobalFilter 过滤器表达式 bool 解析;

This commit is contained in:
28810
2019-12-16 12:12:55 +08:00
parent 38d5580c54
commit fe7b7e5012
14 changed files with 30 additions and 18 deletions

View File

@ -13,6 +13,8 @@ Namespace FreeSql.Tests.VB
Dim List4 = g.sqlserver.Select(Of Testvb).ToList(Function(a) New With {a, a.Id, a.Title})
Dim List5 = g.sqlserver.Select(Of Testvb).Where(Function(a) a.IsDeleted).ToList()
End Sub
End Class
End Namespace
@ -20,4 +22,5 @@ End Namespace
Class Testvb
Property Id As Integer
Property Title As String
Property IsDeleted As Boolean
End Class