-
Thanks for getting back to me. I had tried updating and recompiling yesterday afternoon, following your line of logic. Here's what I saw: There was no change, however, even when not using the repository pattern, the query command still lacked any population of the SET section of the SQL query. No...
-
Here's what I did ... who knows if it's efficient. After working on it all afternoon, I'm glad it works: Select the list to be excluded convert the collection to an array of objects pass the array to the new collection selection as an array attached to the NotIN. You may have to stumble through...
-
I added this functionality intomy business layer. I've created an abstract class that all my BL classes inherit from, with 2 type parameter, one for the entity type and one for the collection type public abstract class BusinessBase<T, C> where T : RepositoryRecord<T>, IRecordBase, new...