我目前正在使用它来通过对象的主键值来获取对象。
我正在尝试找到一种方法来创建类似的方法 GetByID,我可以在其中传递 IEnumerable(of object) 并执行 ids.contains(pk),但没有包含表达式。
有人知道我会怎么做吗?
Public Function GetByID(Of T As Class)(ByVal pk As Object) As T
Dim itemParam = Expression.Parameter(GetType(T), "item")
Return GetTable(Of T).Single(
Expression.Lambda(Of Func(Of T, Boolean))(
Expression.Equal(
Expression.Property(itemParam, GetPrimaryKeyName(Of T)),
Expression.Constant(pk)
),
New ParameterExpression() {itemParam}
)
)
End Function
Public Function GetPrimaryKeyName(Of T)() As String
Return Mapping.GetTable(GetType(T)).RowType.IdentityMembers(0).Name
End Function
你需要
使用Expression.Call
更新 - 不同的重载
Expression.Call(typeof(Enumerable),
"Contains",
new Type[] { Expression.Constant(...).Type }
Expression.Property(...),
Expression.Constant(...));