7
votes
How do I LINQify this?
You could use Enumerable.Range, like so:
List<Car> result = Enumerable.Range(0, Math.Min(makes.Count, models.Count))
.Select(i => new Car { Make = makes[i] …
7
votes
How can you see the sql that is causing an error on SubmitChanges in LINQ to SQL?
A simple way to do this is to use the DataContext.Log property:
using (MyD …
