dkmekal

Stories kicked by dkmekal

Getting rid of null checks in property chains with - but not limited t(bit.ly)

submitted by sandordsandord(140) 1 year, 9 months ago

This article explains how to get rid of the annoying null checks you often have to do before you can evaluate expressions like Order.Customer.Address.ZipCode safely. The provided code builds and compiles an expression tree that does the job in an elegant and well performing manner. Specific extension methods for AutoMapper and S#arpArchitecture are provided as well. read more...

add a comment |category: |Views: 556

tags: another

Multi-line Textbox Character Counter(dheerajstechwiki.blogspot.com)

submitted by dkmekaldkmekal(30) 1 year, 11 months ago

In this article you would learn how create an ASP.NET user control with jQuery which displays the character count of a multi-line textbox below it. The user control takes the character limit as one of its properties. read more...

add a comment |category: |Views: 55

tags: another

Script Manager VS Toolkit Script Manager(dheerajstechwiki.blogspot.com)

submitted by dkmekaldkmekal(30) 2 years, 3 months ago

Demonstrates how using a Toolkit Script Manager instead of the regular Script Manager boosts the performance of an ASP.NET AJAX page. read more...

add a comment |category: |Views: 230

tags: another

Getting all non-nullable comumn names, types and lengths for a table(dheerajstechwiki.blogspot.com)

submitted by dkmekaldkmekal(30) 2 years, 4 months ago

Getting all non-nullable comumn names, types and lengths for a table in SQL Server read more...

add a comment |category: |Views: 5

tags: another

Dynamically Adding Tab Panels To An ASP.NET AJAX Tab Container(dheerajstechwiki.blogspot.com)

submitted by dkmekaldkmekal(30) 2 years, 5 months ago

In this post I will explain you how you can successfully add tab panels to an ASP.NET AJAX tab container. read more...

add a comment |category: |Views: 140

tags: another

Using LINQ With Strings(dheerajstechwiki.blogspot.com)

submitted by dkmekaldkmekal(30) 2 years, 6 months ago

LINQ can be used to perform query operations on objects which implement the IEnumerable<T>. Since the String class implements the IEnumerable<char> interface we can perform various string operations using LINQ. In the below example I have used LINQ to extract the common characters in two strings. read more...

add a comment |category: |Views: 24

tags: another