funkybeatz

Stories kicked by funkybeatz

C# 3.5 Conversion Extension Method Library 1.0(j-dee.com)

submitted by jdeejdee(270) 4 years, 8 months ago

This free downloadable library makes use of the new Extension Method language feature in C# 3.5 to add some cool conversion functions to the basic datatypes. So now, you can do more than just .ToString()...you can do .ToDecimal or .ToInt32 etc. etc. Also includes .Left() and .Right() string manipulations that VB has but C# doesn't !!!! read more...

7 comments |category: |Views: 357

tags: another

Efficient data paging with SQL Server 2005 using ROW_NUMBER()(j-dee.com)

submitted by jdeejdee(270) 4 years, 9 months ago

Paging large amounts of data in SQL Server 2000 used to be a real pain, creating temporary tables, suffering bad performance after the first few batches of data or using ROWCOUNT to ignore large numbers of rows. Luckily SQL Server 2005 delivers a couple of new functions to make efficient painless data paging a reality. read more...

3 comments |category: |Views: 165

tags: another