Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
public virtual IQueryable<TEntity> FindAll(Expression<Func<TEntity, bool>> where = null, params string[] includes)
{
IQueryable<TEntity> query = where == null ? this.Context.Set<TEntity>() : this.Context.Set<TEntity>().Where(where);
foreach (var include in includes)
query = query.Include(include); return query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment