- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试找出一种方法来构建我的数据,以便它是模型可绑定(bind)的。我的问题是我必须创建一个可以表示数据中的多个表达式的查询过滤器。
例如:
x => (x.someProperty == true && x.someOtherProperty == false) || x.UserId == 2
x => (x.someProperty && x.anotherProperty) || (x.userId == 3 && x.userIsActive)
我已经创建了这个代表所有表达式的结构,我的问题是我如何才能使它成为模型可绑定(bind)的属性
public enum FilterCondition
{
Equals,
}
public enum ExpressionCombine
{
And = 0,
Or
}
public interface IFilterResolver<T>
{
Expression<Func<T, bool>> ResolveExpression();
}
public class QueryTreeNode<T> : IFilterResolver<T>
{
public string PropertyName { get; set; }
public FilterCondition FilterCondition { get; set; }
public string Value { get; set; }
public bool isNegated { get; set; }
public Expression<Func<T, bool>> ResolveExpression()
{
return this.BuildSimpleFilter();
}
}
//TODO: rename this class
public class QueryTreeBranch<T> : IFilterResolver<T>
{
public QueryTreeBranch(IFilterResolver<T> left, IFilterResolver<T> right, ExpressionCombine combinor)
{
this.Left = left;
this.Right = right;
this.Combinor = combinor;
}
public IFilterResolver<T> Left { get; set; }
public IFilterResolver<T> Right { get; set; }
public ExpressionCombine Combinor { get; set; }
public Expression<Func<T, bool>> ResolveExpression()
{
var leftExpression = Left.ResolveExpression();
var rightExpression = Right.ResolveExpression();
return leftExpression.Combine(rightExpression, Combinor);
}
}
我的左右成员只需要能够解析为 IResolvable,但模型绑定(bind)器仅绑定(bind)到具体类型。我知道我可以编写一个自定义模型 Binder ,但我更愿意只拥有一个有效的结构。
我知道我可以将 json 作为解决方案传递,但作为要求我不能传递
有没有一种方法可以改进这个结构,使其在模型可绑定(bind)的同时仍然可以表示所有简单的表达式?还是有一种简单的方法可以应用此结构,使其与模型 Binder 一起使用?
编辑为了以防万一有人想知道,我的表达式构建器有一个成员表达式的白名单,它会根据它进行过滤。动态过滤工作我只是在寻找一种自然绑定(bind)此结构的方法,以便我的 Controller 可以接收 QueryTreeBranch 或接收准确表示相同数据的结构。
public class FilterController
{
[HttpGet]
[ReadRoute("")]
public Entity[] GetList(QueryTreeBranch<Entity> queryRoot)
{
//queryRoot no bind :/
}
}
目前 IFilterResolver 有 2 个实现,需要根据传递的数据动态选择
我正在寻找最接近开箱即用的 WebApi/MVC 框架的解决方案。不需要我将输入调整为另一种结构以生成我的表达式的更可取
最佳答案
乍一看,可以在DTO上拆分过滤逻辑,DTO包含一个独立于实体类型的表达式树,以及一个依赖于类型的生成器Expression<Func<T, bool>>
.因此,我们可以避免使 DTO 泛化和多态化,这会导致困难。
可以注意到,您对 IFilterResolver<T>
使用了多态性(2 种实现)因为您想说,过滤树的每个节点都是叶子或分支(也称为 disjoint union )。
型号
好的,如果这个特定的实现导致问题,让我们尝试另一个:
public class QueryTreeNode
{
public NodeType Type { get; set; }
public QueryTreeBranch Branch { get; set; }
public QueryTreeLeaf Leaf { get; set; }
}
public enum NodeType
{
Branch, Leaf
}
当然,您需要对此类模型进行验证。
所以节点要么是分支要么是叶子(我在这里稍微简化了叶子):
public class QueryTreeBranch
{
public QueryTreeNode Left { get; set; }
public QueryTreeNode Right { get; set; }
public ExpressionCombine Combinor { get; set; }
}
public class QueryTreeLeaf
{
public string PropertyName { get; set; }
public string Value { get; set; }
}
public enum ExpressionCombine
{
And = 0, Or
}
上面的 DTO 不是很方便从代码创建,所以可以使用下面的类来生成这些对象:
public static class QueryTreeHelper
{
public static QueryTreeNode Leaf(string property, int value)
{
return new QueryTreeNode
{
Type = NodeType.Leaf,
Leaf = new QueryTreeLeaf
{
PropertyName = property,
Value = value.ToString()
}
};
}
public static QueryTreeNode Branch(QueryTreeNode left, QueryTreeNode right)
{
return new QueryTreeNode
{
Type = NodeType.Branch,
Branch = new QueryTreeBranch
{
Left = left,
Right = right
}
};
}
}
查看
绑定(bind)这样的模型应该没有问题(ASP.Net MVC 适用于递归模型,请参阅 this question )。例如。以下虚拟 View (将它们放在 \Views\Shared\EditorTemplates
文件夹中)。
对于分支:
@model WebApplication1.Models.QueryTreeBranch
<h4>Branch</h4>
<div style="border-left-style: dotted">
@{
<div>@Html.EditorFor(x => x.Left)</div>
<div>@Html.EditorFor(x => x.Right)</div>
}
</div>
对于叶子:
@model WebApplication1.Models.QueryTreeLeaf
<div>
@{
<div>@Html.LabelFor(x => x.PropertyName)</div>
<div>@Html.EditorFor(x => x.PropertyName)</div>
<div>@Html.LabelFor(x => x.Value)</div>
<div>@Html.EditorFor(x => x.Value)</div>
}
</div>
对于节点:
@model WebApplication1.Models.QueryTreeNode
<div style="margin-left: 15px">
@{
if (Model.Type == WebApplication1.Models.NodeType.Branch)
{
<div>@Html.EditorFor(x => x.Branch)</div>
}
else
{
<div>@Html.EditorFor(x => x.Leaf)</div>
}
}
</div>
示例用法:
@using (Html.BeginForm("Post"))
{
<div>@Html.EditorForModel()</div>
}
Controller
最后,您可以实现一个采用过滤 DTO 和 T
类型的表达式生成器,例如来自字符串:
public class SomeRepository
{
public TEntity[] GetAllEntities<TEntity>()
{
// Somehow select a collection of entities of given type TEntity
}
public TEntity[] GetEntities<TEntity>(QueryTreeNode queryRoot)
{
return GetAllEntities<TEntity>()
.Where(BuildExpression<TEntity>(queryRoot));
}
Expression<Func<TEntity, bool>> BuildExpression<TEntity>(QueryTreeNode queryRoot)
{
// Expression building logic
}
}
然后你从 Controller 调用它:
using static WebApplication1.Models.QueryTreeHelper;
public class FilterController
{
[HttpGet]
[ReadRoute("")]
public Entity[] GetList(QueryTreeNode queryRoot, string entityType)
{
var type = Assembly.GetExecutingAssembly().GetType(entityType);
var entities = someRepository.GetType()
.GetMethod("GetEntities")
.MakeGenericMethod(type)
.Invoke(dbContext, queryRoot);
}
// A sample tree to test the view
[HttpGet]
public ActionResult Sample()
{
return View(
Branch(
Branch(
Leaf("a", 1),
Branch(
Leaf("d", 4),
Leaf("b", 2))),
Leaf("c", 3)));
}
}
更新:
正如评论中所讨论的,最好有一个模型类:
public class QueryTreeNode
{
// Branch data (should be null for leaf)
public QueryTreeNode LeftBranch { get; set; }
public QueryTreeNode RightBranch { get; set; }
// Leaf data (should be null for branch)
public string PropertyName { get; set; }
public string Value { get; set; }
}
...和一个编辑器模板:
@model WebApplication1.Models.QueryTreeNode
<div style="margin-left: 15px">
@{
if (Model.PropertyName == null)
{
<h4>Branch</h4>
<div style="border-left-style: dotted">
<div>@Html.EditorFor(x => x.LeftBranch)</div>
<div>@Html.EditorFor(x => x.RightBranch)</div>
</div>
}
else
{
<div>
<div>@Html.LabelFor(x => x.PropertyName)</div>
<div>@Html.EditorFor(x => x.PropertyName)</div>
<div>@Html.LabelFor(x => x.Value)</div>
<div>@Html.EditorFor(x => x.Value)</div>
</div>
}
}
</div>
同样,这种方式需要大量验证。
关于c# - 多态模型可绑定(bind)表达式树解析器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46057040/
我一直在使用 AJAX 从我正在创建的网络服务中解析 JSON 数组时遇到问题。我的前端是一个简单的 ajax 和 jquery 组合,用于显示从我正在创建的网络服务返回的结果。 尽管知道我的数据库查
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我在尝试运行 Android 应用程序时遇到问题并收到以下错误 java.lang.NoClassDefFoundError: com.parse.Parse 当我尝试运行该应用时。 最佳答案 在这
有什么办法可以防止etree在解析HTML内容时解析HTML实体吗? html = etree.HTML('&') html.find('.//body').text 这给了我 '&' 但我想
我有一个有点疯狂的例子,但对于那些 JavaScript 函数作用域专家来说,它看起来是一个很好的练习: (function (global) { // our module number one
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
我需要编写一个脚本来获取链接并解析链接页面的 HTML 以提取标题和其他一些数据,例如可能是简短的描述,就像您链接到 Facebook 上的内容一样。 当用户向站点添加链接时将调用它,因此在客户端启动
在 VS Code 中本地开发时,包解析为 C:/Users//AppData/Local/Microsoft/TypeScript/3.5/node_modules/@types//index而不是
我在将 json 从 php 解析为 javascript 时遇到问题 这是我的示例代码: //function MethodAjax = function (wsFile, param) {
我在将 json 从 php 解析为 javascript 时遇到问题 这是我的示例代码: //function MethodAjax = function (wsFile, param) {
我被赋予了将一种语言“翻译”成另一种语言的工作。对于使用正则表达式的简单逐行方法来说,源代码过于灵活(复杂)。我在哪里可以了解更多关于词法分析和解析器的信息? 最佳答案 如果你想对这个主题产生“情绪化
您好,我在解析此文本时遇到问题 { { { {[system1];1;1;0.612509325}; {[system2];1;
我正在为 adobe after effects 在 extendscript 中编写一些代码,最终变成了 javascript。 我有一个数组,我想只搜索单词“assemble”并返回整个 jc3_
我有这段代码: $(document).ready(function() { // }); 问题:FB_RequireFeatures block 外部的代码先于其内部的代码执行。因此 who
背景: netcore项目中有些服务是在通过中间件来通信的,比如orleans组件。它里面服务和客户端会指定网关和端口,我们只需要开放客户端给外界,服务端关闭端口。相当于去掉host,这样省掉了些
1.首先贴上我试验成功的代码 复制代码 代码如下: protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
什么是 XML? XML 指可扩展标记语言(eXtensible Markup Language),标准通用标记语言的子集,是一种用于标记电子文件使其具有结构性的标记语言。 你可以通过本站学习 X
【PHP代码】 复制代码 代码如下: $stmt = mssql_init('P__Global_Test', $conn) or die("initialize sto
在SQL查询分析器执行以下代码就可以了。 复制代码代码如下: declare @t varchar(255),@c varchar(255) declare table_cursor curs
前言 最近练习了一些前端算法题,现在做个总结,以下题目都是个人写法,并不是标准答案,如有错误欢迎指出,有对某道题有新的想法的友友也可以在评论区发表想法,互相学习🤭 题目 题目一: 二维数组中的
我是一名优秀的程序员,十分优秀!