Welcome to GASP Sign in | Join | Help

Browse by Tags

All Tags » linq   (RSS)
LINQ Extension Method PagedList<T>
Looking at the ASP.NET MVC Framework , i found something very useful. Basically this few lines of code adds to your project an Extension Method wich implements support for paging on any Generic List. using System; using System.Collections.Generic; using Read More...
Linq to SQL Debug Visualizer
On debug mode it is nice to see the generated sql query, but what about if we can execute the query against the database and take a look at the results? That will be great !!! Ok, now you can. Just take a look at Scott Guthrie post about Linq to SQL Debug Read More...