sankarsan
Name: sankarsan
Score: 190
Last Seen: 4 days, 19 hours, 30 minutes ago
Member Since: 20 November, 2009
Servefault.com
atom rss
2
votes

RIA Services in .NET – A Closer Look « Sankarsan’s Journal

published 3 days, 20 hours, 35 minutes ago posted by sankarsansankarsan 4 days, 19 hours, 30 minutes ago
Monday, March 08, 2010 2:37:38 PM GMT Sunday, March 07, 2010 3:42:22 PM GMT
The RIA Services provides a mechanism of exposing data and business logic for consumption by the Rich Internet Applications like Silverlight.These are basically WCF services with some additional plumbing which makes it very easy to develop and consume service from Silverlight applications.Since these are basically WCF services they can be  consumed from other types of applications like ASP.NET/WinForms/WPF as well. Normally we follow the following steps to create a RIA Service quickly:Create a Silver... (more)
category: Silverlight | clicked: 1 | comment | | source: sankarsan.wordpress.com
5
votes

BerkleyDB & C# – Part 1 - Coding N Design

published 34 days, 16 hours, 38 minutes ago posted by sankarsansankarsan 40 days, 9 hours, 56 minutes ago
Friday, February 05, 2010 6:35:01 PM GMT Sunday, January 31, 2010 1:16:45 AM GMT
In my last post I have discussed about the BerkleyDB product family.In this post we will discuss about using BerkleyDB with it’s C# API set.Before getting into the details we will take a quick look into the different access methods provided by Berkley DB.BTree – Here the data is stored in a balanced tree structure.We can put complex as well as simple types as key/values in the ... (more)
category: Unspecified | clicked: 2 | comment | | source: codingndesign.com
3
votes

XMLDictionary & Serialization in WCF

published 71 days, 18 minutes ago posted by sankarsansankarsan 75 days, 23 hours, 9 minutes ago
Thursday, December 31, 2009 10:54:04 AM GMT Saturday, December 26, 2009 12:04:00 PM GMT
We all are quite conversant with the XmlWriter & XmlReader classes in System.Xml namespace.But not that much with the XmlDictionary ,XmlDictionaryReader & XmlDictionaryWriter present in System.Xml namespace in System.Runtime.Serialization assembly.These are used primarily by the WCF framework to optimize XML serialization/deserialization.In this post we will see how a XML Dictionary can be used to make XML writing/reading more optimized. (more)
category: XML | clicked: 1 | comment | | source: sankarsan.wordpress.com
tags: WCF, XML
4
votes

Parallel For Loop : Break Or Stop - Coding N Design

published 72 days, 21 hours, 45 minutes ago posted by sankarsansankarsan 82 days, 3 hours, 30 minutes ago
Tuesday, December 29, 2009 1:27:04 PM GMT Sunday, December 20, 2009 7:42:45 AM GMT
In my last post I had discussed about Parallel For loops and in what situation it can be useful compared to a sequential loop.In this post we will take a look at how to break or exit from a Parallel For loop.We can use the break or exit keywords for this purpose as Parallel For loop is not programming language construct but a method of the System.Threading.Tasks.Parallel class.... (more)
category: Visual Studio | clicked: 0 | comment | | source: codingndesign.com
3
votes

Tuple in C# 4.0 « Sankarsan’s Journal

published 94 days, 4 hours, 48 minutes ago posted by sankarsansankarsan 102 days, 16 hours, 18 minutes ago
Tuesday, December 08, 2009 6:24:09 AM GMT Sunday, November 29, 2009 6:54:13 PM GMT
Tuple provides us with a way to group elements of disparate data types together.This is present in functional languages like Haskell and also dynamic languages like Python (more)
category: Visual Studio | clicked: 1 | comment | | source: sankarsan.wordpress.com
5
votes

Parallel For Loop - Coding N Design

published 98 days, 7 hours, 13 minutes ago posted by sankarsansankarsan 103 days, 21 hours, 53 minutes ago
Friday, December 04, 2009 3:59:10 AM GMT Saturday, November 28, 2009 1:19:48 PM GMT
In my earlier post on Parallel Programming I have explained about Task and Data Parallelism.In this post we will go into a little more deep into the API and discuss about Parallel For loop in .NET Framework 4.0.The static method For of class System.Threading.Tasks.Parallel class allows us to execute for loops where several iterations might run in parallel.There are couple of ov... (more)
category: Visual Studio | clicked: 1 | comment | | source: codingndesign.com
3
votes

Dynamic Reception in C# « Sankarsan’s Journal

posted by sankarsansankarsan 109 days, 16 hours, 21 minutes ago
Sunday, November 22, 2009 6:51:32 PM GMT
In my last couple of posts I had discussed about the new dynamic keyword introduced in C# 4.0 and the how the DLR integrates with CLR to provide the dynamic programming services.In this post I will discuss about the System.Dynamic.DynamicObject class and how we can implement dynamic receivers in C#.Dynamic Receivers allows the client code to make a method call that is not defined in the class. (more)
category: Visual Studio | clicked: 0 | comment | | source: sankarsan.wordpress.com
6
votes

Microsoft AJAX Library Preview 6 & Data Binding - Coding N Design

published 103 days, 2 hours, 18 minutes ago posted by sankarsansankarsan 112 days, 3 hours, 8 minutes ago
Sunday, November 29, 2009 8:54:32 AM GMT Friday, November 20, 2009 8:04:30 AM GMT
In my last post I had discussed about Microsoft AJAX Library Preview 6 and the DataView control.In this post we will take a look into the data binding feature. Let’s first take a look at the Sys.Binding class and it’s following propertiestarget – The target objecttargetProperty – The property of the target objectsource – The source objectpath – The pro... (more)
category: Ajax | clicked: 1 | comment | | source: codingndesign.com