Silverlight 3 with RIA.NET Domain Services

July 15th, 2009 by Steve Gentile Leave a reply »

 

Brad Abrams Series on SL3/RIA.NET Services

Brad Abrams has a great series of blog posts on using Silverlight 3 with RIA.NET Domain Services.  These posts highlight some of the great new features added to Silverlight 3.

Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 1: Navigation Basics
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 2: Rich Data Query
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 3: Authentication
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 4: SEO, Export to Excel and Out of Browser
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 5: Astoria, Add Service Reference and WinForms
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 6: Data Transfer Objects (DTOs)
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 7: ADO.NET Data Services Based Data Store
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 8: WCF Based Data Source
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 9: POCO and Authentication Provider
Business Apps Example for Silverlight 3 RTM and .NET RIA Services July Update: Part 10: LinqToSql

Silverlight 3 & RIA.NET Domain Services

Data Driven Apps with Silverlight 3 and RIA.NET Services
Unit Testing Business Logic in RIA.NET Services
.NET RIA Services: Get your metadata from anywhere!  – metadata vs. attributes for validation

David Poll on Activity and Navigation

David has a couple of great posts to read – I especially like the ability to load dynamic assemblies from navigation:

Silverlight 3 Navigation: Navigating to Pages in dynamically-loaded assemblies
Silverlight 3 Navigation: Navigating to Pages in referenced assemblies
Update: Displaying background activity in a Silverlight RIA application

Advertisement

4 comments

  1. Bhavik Shah says:

    Hi, brad
    how are you

    i study your example for RIA services. but still i am not getting any idea about how we can get the database value in generic collection object like List EmployeeBE is my entity class. so please give me some idea for same and reply me via mail.

  2. Sunita says:

    I also need the same thing- how we can get the database value from Domain Service Class into generic collection object like List.

    Is it possible?

    Thanks
    Sunita

  3. Sunita says:

    Hi Steve,

    The link you gave is not meeting my requirement. It’s not returning list to my .cs file.

    I can do it in another way too. What I need is:

    I have one domain service class having
    public IQueryable GetQuestions()
    {
    return this.ObjectContext.Questions;
    }

    Now I want it to use as List instead of assigning it to some binding control like DataGrid. DataGrid binding works fine. I am trying something like this:
    QuestionContext contextQuestion = new QuestionContext();

    contextQuestion.Load(contextQuestion.GetQuestionsQuery());
    List listQuestion = contextQuestion.Questions.ToList();

    Pls help…

    Thanks
    Sunita

Leave a Reply