|
|
-
|
|
I got a critical comment from @amazedsaint. You can read his blog http://amazedsaint.blogspot.com/ If you read my previous post http://dhananjaykumar.net/2010/10/01/findall-finding-multiple-items-in-c-list/ , I am using a method GreaterThanHunAs predicate to pass as parameter to FindAll() Instead......
|
|
-
|
|
POCO stands for PLAIN OLD CLR OBJECT. If in WCF we are using Complex Data type for example custom class And not attributing this custom class as DataContract and properties of the class as DataMember If we want to expose the below custom class to client and not using DataContr......
|
|
-
|
|
Let us say we have a list of integer and we want to find all the number greater than 100. If list is as follow List lst = new List();
lst.Add(20);
lst.Add(300);
lst.Add(400);
lst.Add(9);
lst.Add(19);
lst.Add(789);
......
|
|
-
|
|
This article will show you , how could we use Predicate , Anonymous method and Lambdas with LINQ to find out all odd numbers from a range of number.
If we have a range of number from 1 to 20 and we want to find odd among them using LINQ . We have three options for that Calling......
|
|
-
|
|
DataContract versioning requires when some modification has been done to the existing DataContract exposed to the client from the service or vice versa. If either service or client is changing the schema of DataContract exposed then new version of DataContract come into action and both party involve......
|
|
-
|
|
Binary search is the example of divide and conquer algorithm . This is best algorithm with running time of Log base 2 n . In this article we will see , how could we use this algorithm to insert an element in sorted list while marinating the sorted order of the list.
I got a mail asking, “How......
|
|
-
|
|
anonymous types is the new feature in c# 3.0 . Which allows to create a class on the fly without any name. This is very useful while fetching value from LINQ query
Anonymous types are new feature being added in C# 3.0. These are data types being generated on the fly at the run time.......
|
|
-
|
|
In WPF we can work with child window as dialog box. This article will provide you an explanation that how could we work with child window and dialog box in WPF
Let us assume there is a requirement, On click event of button, a new child window should open. While child window is open, the ......
|
|
-
|
|
When we call a service , we call it using the extension of the service. For example , if we are calling a WCF service in the service URL .SVC extension is visible. If we want to remove this extension from the service URL , we will use HTTP Module. This article is going to show how we can achieve th......
|
|
-
|
|
Objective This article will explain how to call WCF 4.0 service hosted in IIS 7.5 in a Silverlight application. This article will explain the way to avoid cross domain problem also. Expected Output When user will click on + button a WCF service hosted on IIS will get called. As a input par......
|
|