SVI
SVI

Reputation: 1651

Ways to design heavy data-centric web application in Silverlight

I have to build a web application in Silverlight. This application is entirely data centric with SQLServer 2008 as the database. What are different ways of handling this design problem? Someone told me RIAServices would be a great option, but I am not completely knowledgable of it. One simple option I know of is creating WCFService and exposing the methods to perform the actions on the database object. Any suggestions?

Upvotes: 1

Views: 270

Answers (1)

Shawn Mclean
Shawn Mclean

Reputation: 57469

You answered your own question :).

3rd option ADO.NET dataservice. But RIAService is the #1 right now for n-tier LOB applications.

Upvotes: 1

Related Questions