Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There was a library of dynamic Linq extensions methods released as a sample with VS2008. I'd like to extend it with a Join method. The code below fails with a parameter miss match exception at run time. Can anyone find the problem?

public static IQueryable Join(this IQueryable outer, IEnumerable inner, 
  string outerSelector, string innerSelector, string resultsSelector, 
  params object[] values)
    {
        if (inner == null)
          throw new ArgumentNullException("inner");
        if (outerSelector == null)
          throw new ArgumentNullException("outerSelector");
        if (innerSelector == null)
          throw new ArgumentNullException("innerSelector");
        if (resultsSelector == null) 
          throw new ArgumentNullException("resultsSelctor");

        LambdaExpression outerSelectorLambda = 
          DynamicExpression.ParseLambda(outer.ElementType, null, 
            outerSelector, values);
        LambdaExpression innerSelectorLambda = 
          DynamicExpression.ParseLambda(inner.AsQueryable().ElementType, 
            null, innerSelector, values);

        ParameterExpression[] parameters = new ParameterExpression[] {
            Expression.Parameter(outer.ElementType, "outer"), 
            Expression.Parameter(inner.AsQueryable().ElementType, 
            "inner") };
        LambdaExpression resultsSelectorLambda = 
          DynamicExpression.ParseLambda(parameters, null, 
            resultsSelector, values);

        return outer.Provider.CreateQuery(
            Expression.Call(
                typeof(Queryable), "Join", new Type[] {
                  outer.ElementType, 
                  inner.AsQueryable().ElementType,
                  outerSelectorLambda.Body.Type, 
                  innerSelectorLambda.Body.Type, 
                  resultsSelectorLambda.Body.Type  },
                outer.Expression, inner.AsQueryable().Expression, 
                Expression.Quote(outerSelectorLambda), 
                Expression.Quote(innerSelectorLambda), 
                Expression.Quote(resultsSelectorLambda)));
    }
share|improve this question
could you paste the exact error message? – Perpetualcoder Dec 23 '08 at 19:55
Can you post an example of using your join. I would like to use it, but I am such a greenhorn at LINQ. Thanks. – joe Feb 2 '11 at 3:05

2 Answers

up vote 12 down vote accepted

I've fixed it myself now. It was a schoolboy error passing too many parameters to the CreateQuery(... ) call. Paste the following code into the Dynamic.cs file within the DynamicQueryable class for a dynamic Join extension method. You can find the source for the DynamicQuery sample project at http://code.msdn.microsoft.com/csharpsamples.
Enjoy.

    public static IQueryable Join(this IQueryable outer, IEnumerable inner, string outerSelector, string innerSelector, string resultsSelector, params object[] values)
    {
        if (inner == null) throw new ArgumentNullException("inner");
        if (outerSelector == null) throw new ArgumentNullException("outerSelector");
        if (innerSelector == null) throw new ArgumentNullException("innerSelector");
        if (resultsSelector == null) throw new ArgumentNullException("resultsSelctor");

        LambdaExpression outerSelectorLambda = DynamicExpression.ParseLambda(outer.ElementType, null, outerSelector, values);
        LambdaExpression innerSelectorLambda = DynamicExpression.ParseLambda(inner.AsQueryable().ElementType, null, innerSelector, values);

        ParameterExpression[] parameters = new ParameterExpression[] {
            Expression.Parameter(outer.ElementType, "outer"), Expression.Parameter(inner.AsQueryable().ElementType, "inner") };
        LambdaExpression resultsSelectorLambda = DynamicExpression.ParseLambda(parameters, null, resultsSelector, values);

        return outer.Provider.CreateQuery(
            Expression.Call(
                typeof(Queryable), "Join",
                new Type[] {outer.ElementType, inner.AsQueryable().ElementType, outerSelectorLambda.Body.Type, resultsSelectorLambda.Body.Type  },
                outer.Expression, inner.AsQueryable().Expression, Expression.Quote(outerSelectorLambda), Expression.Quote(innerSelectorLambda), Expression.Quote(resultsSelectorLambda)));
    }


    //The generic overload.
    public static IQueryable<T> Join<T>(this IQueryable<T> outer, IEnumerable<T> inner, string outerSelector, string innerSelector, string resultsSelector, params object[] values)
    {
        return (IQueryable<T>)Join((IQueryable)outer, (IEnumerable)inner, outerSelector, innerSelector, resultsSelector, values);
    }
share|improve this answer
Example of usage is here: stackoverflow.com/questions/5996403/… – alpav May 18 '11 at 19:01

Here is some sample code showing a join on multiple columns. Using a datatable and datarows you need to always access fields via the indexer.

  DataTable t1 = new DataTable();
  t1.Columns.Add("FundId", typeof(int));
  t1.Columns.Add("Date", typeof(DateTime));
  t1.Columns.Add("CodeA", typeof(string));
  t1.Rows.Add(1, new DateTime(2010, 01, 01), "A1");
  t1.Rows.Add(2, new DateTime(2010, 01, 01), "A2");
  t1.Rows.Add(3, new DateTime(2010, 01, 01), "A3");

  DataTable t2 = new DataTable();
  t2.Columns.Add("FundId", typeof(int));
  t2.Columns.Add("Date", typeof(DateTime));
  t2.Columns.Add("CodeB", typeof(string));
  t2.Rows.Add(1, new DateTime(2010, 01, 01), "B1");
  t2.Rows.Add(2, new DateTime(2010, 01, 01), "B2");
  t2.Rows.Add(3, new DateTime(2010, 01, 01), "B3");

  IQueryable outerTable = t1.AsEnumerable().AsQueryable();
  IEnumerable innerTable = t2.AsEnumerable();

  var query = outerTable.Join
    (
      innerTable, 
      "new(get_Item(0) as FundId, get_Item(1) as Date)",
      "new(get_Item(0) as FundId, get_Item(1) as Date)",
      "new(outer.get_Item(0) as FundId, outer.get_Item(2) as CodeA, inner.get_Item(2) as CodeB)"
    );
share|improve this answer
That does not answer the question. Here you use the Join method provided by Linq, the question - was about creating this method, because it wasn't provided by Linq yet. – psycho Dec 6 '12 at 15:31

protected by Community Oct 31 '11 at 10:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.