Tagged Questions

0
votes
1answer
56 views

jQuery UI: sortable(’toArray’) returns an empty array

This has me stumped. The follow code returns ",,,,,,": <script type="text/javascript"> $(function() { $('#listB').sortable({ connectWith: '#listA', update: function(event, ui) { var …
1
vote
2answers
52 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, …