public static Func<TDbTable, bool> GetWhereClauseForAll<TDbTable, TEntity>(
this List<TEntity> objects,
Func<TEntity, Func<TDbTable, bool>> comparison)
...
public static Func<TDbTable, bool> GetWhereClauseForAll<TDbTable, TEntity>(
this List<TEntity> objects,
Func<TEntity, Func<TDbTable, bool>> comparison)
...
Suddenly found myself havin...