Browse by Tags
All Tags »
VS2008 (
RSS)
In part one of this packing series I have shown, how you can automate your build process, test and optionally mock by using the popular .net deployment tool NAnt. If you don't know what I am talking about and just landed here by help of search engine...
We are making a sample application, demo or startup kit or a toolkit with test project that requires some SQL scripts. We generally ship in a readme.txt that says it all. But hey, how about having the script under automated process , like if my SQL Server...
With LINQ to XML, what I have learned so far, it's awesome, it is not only the first class concept of processing XML data, but also let you process a complex XML doc in the most simplest and readable way. I have a project called, Linq.Flickr , and I often...
First of all happy new year, secondly my new article is just published at Dotnetslackers. This explains the detail of creating custom LINQ providers using Linqextender. You can check that out at http://dotnetslackers.com/articles/csharp/CreatingCustomLINQProviderUsingLinqExtender...
We have seen that , while making general LINQ query provider , we have to implement IQueryable along with IQueryProvider. But what about the following query. var query = (from ph in context.Photos where ph.User == User && ph.PhotoSize == PhotoSize...
More Posts