Batch processing issue (LINQ to SQL)
In order to access inserted records before calling SubmitChanges() please use the following code below: public static List<T> WhereOrInserted<T>(this Table<T> table, Expression<Func<T, bool>> predicate) where T : class { var result = ...