|
|
-
Niladri Biswas Posted 10 Months ago through Blogs
This Linq Query will help to find the N-th highest Salary of Employees ...
|
-
Niladri Biswas Posted 12 Months ago through Blogs
Given a dictionary object as under Dictionary&tt;string, List> dictContinents = new Dictionary&tt;string, List>();
dictStr.Add("Asia", new List() { "India", "Pakistan", "Bangaladesh", "Singapore" });
dictStr.Add("Africa", new List() { "Uganda", ...
|
-
Niladri Biswas Posted 12 Months ago through Blogs
new XElement("Country", new XAttribute("Name", x))))
)
);
Console.WriteLine(doc.ToString());
Hope this will be helpful. ...
|
-
Niladri Biswas Posted 12 Months ago through Blogs
Suppose we have the below XML file
Z. Tendulkar
23
S. Khan
30
B. Warne
40
P. Gooch
30
We need to display the player information for those players who will play for the game (i.e. is...
|
-
Niladri Biswas Posted 12 Months ago through Blogs
Suppose we have an entity by the name "ContinentCountry" that will hold the countries based on the continents being providedpublic class ContinentCountry
{
public string ContinentName { get; set; }
public string CountryValues { get; set; }
}
Now, let...
|
-
Niladri Biswas Posted 1 Years ago through Blogs
Hi, I a recent requirement of mine, I had to choose only the text that has been highlighted/selected in a WPF combo box which is editable.
e.g.
Let us say we have a WPF combobox and a button as given below
Now, we have written some text in th...
|
-
Niladri Biswas Posted 1 Years ago through Blogs
Introduction
In this article, I will show how to invoke Javascript methods from Silverlight. We will learn this by performing a simple calculator example with some basic arithmetical functionalities being expose.
What we need to perform the experime...
|
-
Niladri Biswas Posted 1 Years ago through Blogs
Introduction
In this article, I will show how to invoke Silverlight methods from javascript. We will learn this by performing a simple calculator example with some basic arithmetical functionalities being expose.
What we need to perform the experime...
|
-
Niladri Biswas Liked 1 Years ago through Pages
We wish to use these pages for publishing various documents, announcements, FAQ etc related to beyondrelational.com...
|
-
Niladri Biswas Commented 1 Years ago through Syndicated Blogs
We can, however, store the result of sp_msforeachtable into a temp table and use it later. In this way we can avoid manual work
e.g.
-- Create a temp table for storing the information
CREATE TABLE #temp
(
[Table...
|