Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/2765c346ed98a61375f950993e45e4d4 to your computer and use it in GitHub Desktop.
Save hbulens/2765c346ed98a61375f950993e45e4d4 to your computer and use it in GitHub Desktop.
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