Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
4k 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
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, ...