Get much awaited ADO.NET vNext Entity Data Model Designer Prototype, CTP here (note: you’ll need LINQ May CTP and ADO.NET vNext CTP (August 2006) to make it work. And […]
Visual Studio 2005 Service Pack 1 Beta 1 is out
So Visual Studio 2005 Service Pack 1 Beta 1 is out and available through Microsoft’s Connect. First thought I had was like what? no CTP? OK, kidding aside, it takes […]
Sign up for Visual Studio 2005 Service Pack 1 Beta
Great news, something is happening in VS 2005 service pack area! Sign up for VS 2005 service pack 1 Beta. Apparently it will be available on Microsoft Connect in […]
Implementing more useful tracing for LLBLGenPro 2.0
[LGP] has an internal tracing mechanism that outputs data to Trace class using standard .net mechanism. To enable various tracing categories you have to switch one various TraceSwitches […]
Converting from DbType to [Sql]DbType is easy
I often see question on how to convert from DbType to SqlDbType (or any other *DbType). This is often required if you do some database independent code with […]
My favorite CodeRush/Refactor! Pro features
Ctrl+3 aka embed method in region with the name of method Auto Completition aka completes the word you are typing and mostly the suggestion is correct. Introduce local […]
.net 3.0 RC1 is here
First release candidate of .net 3.0 (.net 2.0 + winfx) thing is here.
PDB files are sometimes added to Source Safe when doing asp.net 2.0 projects
This is a very annoying VS2005 bug: PDB files residing in bin folder are sometimes added to source safe when you are doing an asp.net 2.0 project. This […]
Page fragment caching and Ajax
After finding a proper way to do page fragment caching (caching UserControls) and Ajax I wrote an how to article. Read it here.
Extending LLBLGenPro’s ResultsetFields to work like List
These days I had a need to use ResultsetFields for fetching dynamic list. As you know, ResultsetFields derives from EntityFields2 (I am working with LLBLGenPro 2.0 .net 2) which […]