Tagged Questions
1
vote
2answers
472 views
Does calling ToArray on IQueryable de-attach the entity in LinqToSql?
I have a LinqToSql query that returns an array of Article objects like so:
return db.Articles.ToArray();
I then loop over this array and start to delete some items that meet a certain criteria, ...