mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
- 修复 WhereDynamicFilter System.Text.Json 反序化后的类型转换问题 #371;
This commit is contained in:
@ -40,6 +40,7 @@ namespace base_entity
|
||||
public class Products : BaseEntity<Products, int>
|
||||
{
|
||||
public string title { get; set; }
|
||||
public int testint { get; set; }
|
||||
}
|
||||
|
||||
static AsyncLocal<IUnitOfWork> _asyncUow = new AsyncLocal<IUnitOfWork>();
|
||||
@ -187,6 +188,16 @@ namespace base_entity
|
||||
""Field"" : ""title"",
|
||||
""Operator"" : 8,
|
||||
""Value"" : ""product-4""
|
||||
},
|
||||
{
|
||||
""Field"" : ""testint"",
|
||||
""Operator"" : 8,
|
||||
""Value"" : 11
|
||||
},
|
||||
{
|
||||
""Field"" : ""testint"",
|
||||
""Operator"" : 8,
|
||||
""Value"" : ""12""
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user