rovsen
rovsen

Reputation: 5022

Best practices for Silverlight usage in a ASP.NET MVC application

What are the best practices for ASP.NET MVC and Silverlight usage in a web application? To be specific which libraries/frameworks (like prism) should be used in order to make the application unit testable and develop rapid? How one should pass data to the silverlight part from asp.net mvc (binding if possible?) and vice verse (from asp.net to silverlight)?

Upvotes: 0

Views: 208

Answers (2)

Marko
Marko

Reputation: 1924

I propose:

asp.net mvc as service layer silverlight as client linq2sql for datalayer nunit for testing

Upvotes: 0

Tim Ebenezer
Tim Ebenezer

Reputation: 2724

The Entity Framework with RIA services is made precisely for this purpose.

Upvotes: 2

Related Questions