Window Support

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Saturday, 8 November 2008

Migrate DataSet to List<Type> for Data Binding for Silverlight 2 Grid.

Posted on 10:16 by Unknown

I have wrote 2 article on Data binding in Silverlight 2, one with normal traditional “asmx” web services and another with WCF services. you can check them at :

http://pendsevikram.blogspot.com/2008/10/silverlight-2-grid-linq-to-sql.html

http://pendsevikram.blogspot.com/2008/10/silverlight-2-grid-with-silverlight.html

There was very well response to both articles..I got lots of mails from many..But the feedback is how one can do it with DataSet [Traditional Data Container] and pass it over service, without using LINQ or migrating to LINQ.

Well Big thanks to Mr. Mahesh Sabnis who is one of my mentor at consulting department where I am working right now, We did it together and came up with this simple code snippet which is self explanatory and you just need to plug it in your service logic and rest will work fine as it was with LINQ to SQL.

       public List<clsEmployee> GetAllEmployee()

       {

           SqlConnection Conn = new SqlConnection("Data Source=.;Initial
Catalog=Company;Integrated Security=SSPI");

           SqlDataAdapter AdEmp = new SqlDataAdapter("Select * from
Employee",Conn);

           DataSet Ds = new DataSet();

           AdEmp.Fill(Ds,"Employee");

           DataTable DtEmp = Ds.Tables["Employee"];

           List<clsEmployee> listEmp = new List<clsEmployee>();

           foreach (DataRow dr in DtEmp.Rows)

           {

               clsEmployee objEmp = new clsEmployee();

               objEmp.EmpNo = Convert.ToInt32(dr["EmpNo"]);

               objEmp.EmpName = dr["EmpName"].ToString();

               objEmp.Salary= Convert.ToInt32(dr["Salary"]);

               objEmp.DeptNo = Convert.ToInt32(dr["DeptNo"]);

               listEmp.Add(objEmp);

           }

            return listEmp;

      }

Let me know your feedback, I would glad to explore if you have any problem areas specific..will be nice to try it !

Vikram.

Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Posted in | No comments
Newer Post Older Post Home

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • First Windows Phone 7 update February 2011 - Small update but Big start
    After tons of rumors and set of predictions on Windows Phone 7 all over Internet, Microsoft came up with first Windows Phone 7 minor update ...
  • The little Story of “I Unlock Joy” event by Microsoft and Pune User Group
      This post is about recent “I Unlock Joy” event happened in Pune which was conducted by Microsoft and Pune User Group. Little History : ...
  • Silverlight 2 : Theming from Silverlight 2 Toolkit
    It’s now time to put on some cool Themes to your Silverlight 2 Controls. I have already talked about Silverlight toolkit in my last post, ...
  • DeepZoom with PhotoZoom and Silverlight.live.com
    I have already wrote article on How to build DeepZoom with DeepZoom Composer, I know after that another version of DeepZoom came up, but cha...
  • Silverlight 5 : Platform Invoke (PInvoke) in Silverlight
      Two days back Microsoft announced availability of Silverlight 5 RC,I encourage you to download bits from here , My friend Pete Brown alr...
  • Silverlight On Mobile : Windows Phone 7 Splash Screen and Customization
    After talking about 3D capabilities on Windows Phone 7 using Silverlight in last article , Now I am moving ahead with small but equally impo...
  • Silverlight, HTML5 & Windows 8 : Where we are heading to ?
    This is not the post or yet another post on most happening debate of Silverlight and HTML5, This is just a visit to all of them to realize t...
  • Silverlight 3 : Out Of Browser
    I have already written an article over Silverlight Out Of Browser functionality few months back ( http://pendsevikram.blogspot.com/2009/04/s...
  • Mango : Using DeviceStatus in Windows Phone 7.1
    First of all “Thank You” for your wonderful response and comments on my last article on Silverlight Vs HTML5 ,I hope you like the points I ...
  • Share Status and Link on Socials in Windows Phone
      Hope you all doing good.Sorry for the great delay here,I am almost working for all 7 days in week and that too on SQL Server – SSIS whic...

Blog Archive

  • ►  2013 (4)
    • ►  August (1)
    • ►  April (3)
  • ►  2012 (4)
    • ►  July (1)
    • ►  March (2)
    • ►  January (1)
  • ►  2011 (24)
    • ►  December (1)
    • ►  September (4)
    • ►  August (2)
    • ►  July (1)
    • ►  June (4)
    • ►  May (3)
    • ►  April (3)
    • ►  March (1)
    • ►  February (4)
    • ►  January (1)
  • ►  2010 (21)
    • ►  December (1)
    • ►  November (2)
    • ►  October (3)
    • ►  September (2)
    • ►  August (4)
    • ►  July (5)
    • ►  May (1)
    • ►  April (1)
    • ►  March (1)
    • ►  January (1)
  • ►  2009 (49)
    • ►  December (1)
    • ►  November (5)
    • ►  October (2)
    • ►  September (1)
    • ►  August (5)
    • ►  July (5)
    • ►  June (1)
    • ►  May (5)
    • ►  April (5)
    • ►  March (9)
    • ►  February (4)
    • ►  January (6)
  • ▼  2008 (43)
    • ►  December (3)
    • ▼  November (9)
      • Terror attacks on Mumbai : India’s 9/11
      • DeepZoom with PhotoZoom and Silverlight.live.com
      • Silverlight 2 : Master Pages implementation in Sil...
      • Ultimate Windows Tweaker is here : Great job by Pu...
      • Windows 7 : Lap around new version of Windows
      • South Asia MVP Open Day '08, Goa ,India
      • Migrate DataSet to List<Type> for Data Binding for...
      • Bill Gates Visit to my city “Pune” and DreamSpark ...
      • Silverlight 2 : Theming from Silverlight 2 Toolkit
    • ►  October (7)
    • ►  September (4)
    • ►  August (2)
    • ►  July (3)
    • ►  June (4)
    • ►  May (3)
    • ►  March (3)
    • ►  February (5)
Powered by Blogger.

About Me

Unknown
View my complete profile