- 修复 WhereDynamicFilter System.Text.Json 反序化后的类型转换问题 #371;

This commit is contained in:
28810
2020-08-15 22:26:42 +08:00
parent d3c4bbb879
commit 91a7fc8694
2 changed files with 23 additions and 12 deletions

View File

@ -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""
}
]
}