抱歉,如果标题有点不清楚,但我不完全确定正确的术语是什么。
我编写了一个自定义 LINQ 提供程序来针对基于 lambda 的搜索提供程序生成查询字符串。只要有 1:1 的属性:字段映射,它就可以正常工作。但是,我现在被要求修改它,以便在引用某些属性时,它会生成一个OR
并检查多个字段。
所以现在应该生成而不是function(x) x.CreatedDate = #1 Jan 2012#
生成("CreatedDate" : "1 Jan 2012")
(("CreatedDate" : "1 Jan 2012" OR "CreatedOn" : "1 Jan 2012"))
我已经注释了我的实体,因此我可以确定要检查哪些备用字段:
Public Class MyEntity
<AlsoKnownAs("CreatedOn")>
Public Property CreatedDate as Date
End Class
但我苦苦挣扎的地方是如何修改我的表达式访问者,以便它生成正确的术语。目前我这样做...
Protected Overrides Function VisitMember(m As MemberExpression) As Expression
If m.Expression IsNot Nothing AndAlso m.Expression.NodeType = ExpressionType.Parameter Then
sb.Append("""")
sb.Append(m.Member.Name)
sb.Append("""")
Return m
End If
Throw New NotSupportedException(String.Format("The member '{0}' is not supported", m.Member.Name))
End Function
此时我可以检测到自定义属性,但我现在只需要评估单个成员,而不是表达式,我实际上需要多次复制父节点(等于)。
我应该如何处理这个?
要提供更多代码,这是我的
Protected Overrides Function VisitBinary(b As BinaryExpression) As Expression
Select Case b.NodeType
....
Case ExpressionType.Equal
If b.Left.NodeType = ExpressionType.Call AndAlso
DirectCast(b.Left, MethodCallExpression).Method.DeclaringType = GetType(Microsoft.VisualBasic.CompilerServices.Operators) AndAlso
DirectCast(b.Left, MethodCallExpression).Method.Name = "CompareString" Then
'Cope with the the VB Pain-In-The-Ass string comparison handling
Me.Visit(b.Left)
Else
'Carry on
Me.Visit(b.Left)
sb.Append(" : ")
Me.Visit(b.Right)
End If
Exit Select