I am using the Generic Repository pattern on top of Entity Framework Code First. Everything was working fine until I needed to include more entities in a query. I got to include one entity successfully, but now I can't figure out how to include multiple entities. Check out what I've got so far:

public IQueryable<TEntity> GetQuery<TEntity>() where TEntity : class
{
    var entityName = GetEntityName<TEntity>();
    return _objectContext.CreateQuery<TEntity>(entityName);
}

public IList<TEntity> GetQueryWithInclude<TEntity>(string toInclude) where TEntity : class
{
    var entityName = GetEntityName<TEntity>();
    return _objectContext.CreateQuery<TEntity>(entityName).Include(toInclude).ToList();
}

private string GetEntityName<TEntity>() where TEntity : class
{
    return string.Format("{0}.{1}", _objectContext.DefaultContainerName, _pluralizer.Pluralize(typeof(TEntity).Name));
}

What I tried to do but didn't work was pass in an array of strings into a function, then try to "append" the includes on top of the query. I was wondering what if I called the GetQueryWithInclude and passed an entity name (actually a navigation property) at a time to aggregate the results of the query, but I'm worried this might duplicate the results of the query on each call... What do you think would be the best way to get this to work?

Thanks in advance!

UPDATE:

Here's an example of what I'm trying to achieve:

public IQueryable GetQueryWithIncludes(string[] otherEntities)
{
    var entityName = GetEntityName<TEntity>();
    //now loop over the otherEntities array 
    //and append Include extensions to the query
    //so inside the loop, something like: 
    _objectContext.GetQuery<TEntity>(entityName).Include(otherEntities[index]);
}
link|improve this question

elaborate on "include more entities in a query" ? Can you give an example of this? If you have an ObjectContext you should be able to query an objects/or related objects with LinqToEntities – gideon Mar 21 '11 at 10:50
@giddy: Check out the update above. Thank you. – Kassem Mar 21 '11 at 11:04
feedback

2 Answers

up vote 25 down vote accepted

Use just the Include extension on IQueryable. It is available in EF 4.1 assembly. If you don't want to reference that assembly in your upper layers create wrapper extension method in your data access assembly.

Here you have example:

public static IQueryable<T> IncludeMultiple<T>(this IQueryable<T> query, params Expression<Func<T, object>>[] includes)
    where T : class
{
    if (includes != null)
    {
        query = includes.Aggregate(query, 
                  (current, include) => current.Include(include));
    }

    return query;
}

You will use it for example like:

var query = context.Customers
                   .IncludeMultiple(
                       c => c.Address,
                       c => c.Orders.Select(o => o.OrderItems));

This query will load all customers with they addresses and orders and every order will contain its order items.

link|improve this answer
@Ladislav Mrnka: This is exactly what I'm trying to do. I'm trying to use the Include extension, but I want to create a generic method that accepts any number of navigational properties in an array of strings and then include those with queried entity. See my edit/update above. – Kassem Mar 21 '11 at 10:59
Don't use version with strings. EF 4.1 also offers strongly typed version with lambdas. – Ladislav Mrnka Mar 21 '11 at 11:02
@Ladislav Mrnka: Ok but how? Could you provide an example please? – Kassem Mar 21 '11 at 11:04
I will post sample later if you don't get solution from somebody else. I'm writting from iPhone at the moment so providing code samples is pretty hard. – Ladislav Mrnka Mar 21 '11 at 11:13
@Ladislav Mrnka: Alright, I'll be very thankful. I have to go to my class right now, so I'll make sure to check later on. Appreciated :) – Kassem Mar 21 '11 at 11:15
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

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