2011-06-17 121 views
1

我試圖用Linq表達式來構建左外連接查詢,但現在我真的碰到了牆。Linq表達式的左外連接

我想做到的是下面的查詢:

var q = 
    from i in ProcessInstances 

    join dof1 in Queries.DataObjectFieldsQuery(this) on new { instanceId = i.ObjectID, dataId = fields[0,0], fieldId = fields[0,1] } equals new { instanceId = dof1.ProcessInstanceObjectID, dataId = dof1.DataID, fieldId = dof1.FieldID } into dofs1 
    from dof1 in dofs1.DefaultIfEmpty() 

    join dof2 in Queries.DataObjectFieldsQuery(this) on new { instanceId = i.ObjectID, dataId = fields[1,0], fieldId = fields[1,1] } equals new { instanceId = dof2.ProcessInstanceObjectID, dataId = dof2.DataID, fieldId = dof2.FieldID } into dofs2 
    from dof2 in dofs2.DefaultIfEmpty() 

    join dof3 in Queries.DataObjectFieldsQuery(this) on new { instanceId = i.ObjectID, dataId = fields[2,0], fieldId = fields[2,1] } equals new { instanceId = dof3.ProcessInstanceObjectID, dataId = dof3.DataID, fieldId = dof3.FieldID } into dofs3 
    from dof3 in dofs3.DefaultIfEmpty() 

    select new WorkitemListModel 
    { 
     InstanceId = i.ObjectID, 
     FormFieldValue1 = dof1.FieldValue, 
     FormFieldValue2 = dof2.FieldValue, 
     FormFieldValue3 = dof3.FieldValue, 
    }; 

我已經定義了以下類:

public class WorkitemListModel 
{ 
    public string InstanceId { get; set; } 
    public string FormFieldValue1 { get; set; } 
    public string FormFieldValue2 { get; set; } 
    public string FormFieldValue3 { get; set; } 
} 

public class DataObjectField 
{ 
    public string ProcessInstanceObjectID { get; set; } 
    public string DataID { get; set; } 
    public string FieldID { get; set; } 
    public string FieldValue { get; set; } 
} 

public class ModelWithFields<TModel> 
{ 
    public IEnumerable<DataObjectField> DataObjectFields { get; set; } 
    public TModel Model { get; set; } 
} 

public class OuterKeySelector 
{ 
    public string instanceId { get; set; } 
    public string dataId { get; set; } 
    public string fieldId { get; set; } 
} 

我創建的羣組加入表達至極沒有給出編譯錯誤。 (我離開這裏了SOM碼):

var q = dc.Instances; 

System.Type modelType = typeof(ModelWithFields<>); 
System.Type outerKeyType = typeof(WorkitemListModel); 
System.Type resultType = modelType.MakeGenericType(outerKeyType); 

//... MemberInitExpression and Expression.Bind 

q = q.Provider.CreateQuery(
    Expression.Call(
     typeof(Queryable), 
     "GroupJoin", 
     new[] 
     { 
      typeof(WorkitemListModel), 
      typeof(DataObjectField), 
      typeof(OuterKeySelector), 
      resultType, 
     }, 
     query.Expression, 
     Expression.Constant(Queries.DataObjectFieldsQuery(dc)), 
     Expression.Quote(outerLambda), 
     Expression.Quote((Expression<Func<DataObjectField,OuterKeySelector>>)(
      (DataObjectField dof) => 
       new OuterKeySelector 
       { 
        instanceId = dof.ProcessInstanceObjectID, 
        dataId = dof.DataID, 
        fieldId = dof.FieldID 
       })), 
     Expression.Quote(resultLambda))); 


// selectmany expression 
// collectionSelector lambda -- temp.DataObjectFields.DefaultIfEmpty() 
ParameterExpression collectionParameter = Expression.Parameter(resultType, "temp"); 

// This throw an exception 
MethodCallExpression collectionCallExpression = 
    Expression.Call(
     typeof(Queryable), 
     "DefaultIfEmpty", 
     new System.Type[] 
     { 
      typeof(IQueryable<>).MakeGenericType(typeof(DataObjectField)) 
     }, 
     Expression.Property(collectionParameter, resultType.GetProperty("DataObjectFields"))); 

但在方法的SelectMany我想補充DefaultIfEmpty,但我得到一個異常說:

上 類型沒有泛型方法「DefaultIfEmpty」 'System.Linq.Queryable'是 與提供的類型 參數和參數兼容。如果 方法是非通用的,則不應提供類型 參數。

我試過從IQueryable切換到IEnumerable的typeparams和事件試圖調用Enumerable.DefaultIfEmpty沒有運氣。 PropertyExpression可能有問題嗎?

+0

你能讓這個擴展方法嗎?我認爲很多人會受益 – jaywayco

回答

0

我已經定義了Expression.Call方法的不正確的類型參數。這不是IQueryable<DataObjectField>,而只是DataObjectField。這是固定它。

MethodCallExpression collectionCallExpression = 
    Expression.Call(
     typeof(Enumerable), 
     "DefaultIfEmpty", 
     new System.Type[] 
     { 
      typeof(DataObjectField) 
     }, 
     Expression.Property(collectionParameter, newResultType.GetProperty("DataObjectFields")) 
+0

您是否嘗試過我的解決方案? – Aducci

+0

@Aducci,是的,但主要問題是我沒有爲類型參數設置正確的類型。 –

0

我更喜歡Expression.Call使用MethodInfo不同的重載,這裏是我工作的一個簡單示例。

Expression constant = Expression.Constant(new string[] { "a", "b" }); 
MethodInfo methodInfo = typeof(Enumerable).GetMethods().FirstOrDefault(c => (c as MethodInfo).Name == "DefaultIfEmpty"); 
methodInfo = methodInfo.MakeGenericMethod(typeof(string)); 

MethodCallExpression methodExpression = Expression.Call(methodInfo, constant);