Skip to content

Instantly share code, notes, and snippets.

@alieniasty
Created October 23, 2017 19:25
Show Gist options
  • Save alieniasty/33eb1d0fe680ec7ce03fbf4e4b917579 to your computer and use it in GitHub Desktop.
Save alieniasty/33eb1d0fe680ec7ce03fbf4e4b917579 to your computer and use it in GitHub Desktop.
public IEnumerable<T> Get(Func<T, bool> conditionLambda){
using(var db = new DbContext()){
return db.Set<T>.Where(conditionLambda);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment