Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET RIA Services with MVC Style Repositories?

I have a Solution with several projects in it, including two asp.net mvc projects that share a Repositories and Models that live in a external assembly (also in the same solution). Essentially...

Core/
-Repositories
-Models

Domestic.Web/
-Basic MVC Site, references the core project

International.Web/
-Basic MVC Site, references the core project

What I want to do is build a Silverlight 3 / RIA Services application for all the database admin. Thats fine except RIA Services (for the most part) is only really documented with the Entity Framework - you can find some info on Linq2Sql and even less on backing RIA with POCO.

What I need is the best references you have on using RIA with POCO but even better if there is some documentation on using it with a MVC / Nerddiner style Repository pattern.

Thanks!

like image 777
Samurai Ken Avatar asked Nov 15 '22 15:11

Samurai Ken


1 Answers

Getting started with the repository pattern in Silverlight

http://msmvps.com/blogs/theproblemsolver/archive/2009/02/18/getting-started-with-the-repository-pattern-in-silverlight.aspx

like image 179
Robert Harvey Avatar answered Dec 10 '22 18:12

Robert Harvey