(X) Hide this SilverlightShow next training events: Secure & Personalize Your Silverlight App with WCF RIA Services. May 25th, 10 am PST. Sign up
XNA for Windows Phone 7 - a 3 day training by MCC Peter Kuhn. June 1-3, 9 am - 1.30 pm PST. Sign up early-bird for $199.
Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 7 results for Collections.
Date between: <not defined> and <not defined>
Search in: News , Articles , Tips , Shows , Showcase , Books

Order by Publish Date   Ascending Title   Rating  

  • 0 comments  /  posted by  Kevin Dockx  on  May 10, 2011 (6 days ago)

    This is the second part of a two-part series on working with collections in WCF RIA Services:

    In the first part of the article series, we’ve learned about the simpler collection types: EntitySet and EntityList.  In this part, we’ll dig deeper into the more advanced types: the ICollectionView and the DomainCollectionView.

    ICollectionView

    The ICollectionView isn’t a new interface: implementations are used as a view over a collection by a number of existing Silverlight controls, like the DataGrid.



  • 7 comments  /  posted by  Kevin Dockx  on  May 09, 2011 (1 week ago)

    This is the first part of a two-part series on working with collections in WCF RIA Services:

     

    Introduction

    A lot of business applications today are built with WCF RIA Services (which should come as no surprise, as it’s a really powerful, extensible framework).  However, the collection type support could have been better.

  • VMCollectionWrapper - Synchronize a Model collection with a ViewModel collection

    0 comments  /  posted by  Silverlight Show  on  Oct 19, 2010 (6 months ago)
    Tags: ViewModels , Collections , Brett Balmer
    In this article, Brett Balmer discusses VMCollectionWrapper - a class that synchronizes ViewModel collection changes to Model collection changes.

    Source: The <silver/> method

    There has been a lot of debate around what to do with collections of Model objects live under a ViewModel. Consider the situation where a Person has a collection of Nicknames and you have created a PersonViewModel. The debate centers around whether you should expose the Nicknames to binding directly, or if you should create a collection of NicknameViewModels to which binding should occur.

    Follow us on twitterWe tweet all news and content updates - follow us on Twitter! 

  • 0 comments  /  posted by  Silverlight Show  on  Nov 13, 2009 (more than a year ago)

    Kevin Dockx discusses a problem with collection properties being shared with all instances of your controls.

    Last week, I was helping out one of our clients with their Silverlight application.  An application which uses custom controls.  One of which contained a collection that seemed to behave as a singleton instead of on an instance level…  I remembered the problems I faced with this before, already thinking we wouldn’t find a solution to keep this collection dynamic.  However, I started searching around again, and lo and behold, it wasn’t long before I found this page on MSDN, describing the exact problem we were facing AND offering a reason and solution. 

  • Fun with CollectionViews

    0 comments  /  posted by  Silverlight Show  on  Oct 26, 2009 (more than a year ago)
    In this post Shawn Wildermuth examines the PagedCollectionView class.

    The PagedCollectionView class supports the ICollectionView interface that supports a number of features that are really useful for dealing with collections. These include:

    • Sorting
    • Filtering
    • Grouping
  • Dependency properties and collections combined with XAML

    0 comments  /  posted by  Silverlight Show  on  May 27, 2009 (more than a year ago)

    Jonathan van de Veen writes about a problem he experienced in his Enterprise Application series that he wanted to post as a single article. He explains how a dependency property is getting accessed sooner than expected thus causing trouble.

    I did ran into this while working on the Selector control as mentioned in part #11 of this series, but it's such a general pitfall, I figured it makes sense to put it outside the series.

    As you may remember from this article, I placed two datagrids inside a usercontrol to allow users to select items by moving them from one list to another. As many of you already know, one of the features of the DataGrid control is the option to specify your own columns trough the Columns property. I wanted the users of my control to have the same functionality.

  • Deep Zoom collections explained Part 2 - the storage and network optimization, dynamic collections

    0 comments  /  posted by  Silverlight Show  on  Mar 23, 2009 (more than a year ago)
    Lutz from the DeepZoom blog has a post in which explains what collections are, how they work, and what the benefits of collections are.

    So why were collections created in the first place? In essence collections are a storage and network optimization.