Tagged Questions

11
votes
9answers
1k views

Most complete ORM with LINQ support?

I'm looking for an ORM that offers complete or near-complete LINQ support. LINQ to SQL - Supports about everything inside of LINQ (.Contains, Math.Log, etc) - Cannot eager load relationship ...
2
votes
3answers
107 views

How do I save changes to a sequential list of names to sql database?

OK, here's the scenario. I think it's pretty common, and I have solved it in a prior life using a brute-force approach, but I'm thinking there has to be a better way. Given an ordered list of names, ...