|
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
This article is about String Concatenation and Scope Resolution Operator in SQL Server 2008 R2...
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
Target Audience: Beginners
SQL Server 2008 R2 comes with String Concatenation Operator.
String Concatenation operator is denoted by symbol plus ‘+’.
SELECT 'Dhananjay' + 'Kumar' FROM Person;
Output we will get,
String concaten...
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
The post is about AutoCompleteBox control, which is a part of Silverlight 4.0 SDK. AutoCompleteBox control allows us to have a Google style text box, to know more read on the post....
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
Target Audience: Beginners
AutoCompleteBox control is part of Silverlight 4.0 SDK. It allows us to have a Google style text box.
AutoCompleteBox will look for suggestion in IEnumerable list.
Create a DataSource to find the suggestion
Very fir...
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
Dhananjaykumar explains Enumeration in DataContract of WCF in this post with an example...
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
By default Enums are serializable. If we define Enum at service side and use it in Data Contract, it is exposed at the client side.
For example, if we have an Enum as below,
public enum ProductDeliveryPriority
{
Low,
Normal,
High,
...
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
Cross machine communication between .Net Application using WCF - When service and client both are of .Net and resides on different machines then we choose preconfigured netTcpBinding to publsih WCF Service to the client. The pos...
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
When service and client both are of .Net and resides on different machines then we choose preconfigured netTcpBinding to publsih WCF Service to the client.
netTcpBinding is best suited when both client and service are of .Net and communicating to...
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
The post is about how we can programmatically find the binding Elements in WCF Binding...
|
-
Dhananjay Kumar Posted 2 Years ago through Blogs
Binding is one of the important aspect of WCF Programming. It deals with, “How Service and client will talk to each other?” Binding is made up of different binding elements. When different binding elements are stacked together they form a Bi...
|