Async
Add the ability to run a query without locking the UI on long running queries.
Async is used to offload any query off of the UI thread to prevent freezing and slowness on the site. The implementation uses Html 5 Web Workers. If a user is using an older browser, JLinq will fallback to the normal ToArray() method to complete the query results.
Please see the wiki page for full documentation on the syntax.