0
votes
Is there any way to get rid of the long list of usings at the top of my .cs files?
In VS2008, you can right click on the CS file and choose 'Organize Usings'. It will strip unused using and sort them for you too. Other than that, I would just use #region. Also, CTRL+M+O will c …
0
votes
How do you know what to test when writing unit tests?
I wouldn't test the actual setting of properties. I would be more concerned about how those properties get populated by the consumer, and what they populate them with. With any testing, you have …
0
votes
Best way of constructing dynamic sql queries in C#/.NET3.5?
You may want to consider LINQ or an O/R Mapper like this one: http://www.llblgen.com/
…
0
votes
Is there a way to asynchronously filter an IList?
Wrap only the repeater you want to rebind with an update panel of its own. The only viewstate transferred when doing this is the portion inside the update panel. You may have to play around with …
2
votes
Hints for a high-traffic web service, c# asp.net sql2000
I think caching is a reasonable approach and you can take it a step further and add a SQL Dependency to it.
…
1
vote
Hints for a high-traffic web service, c# asp.net sql2000
If you go the file route, keep this in mind.
http://petesbloggerama.blogspot.co …
