Converting old WCF service to RIA one
- by Artur
Hi there,
Currently I have a service that looks like:
Some app <-- WCF Service <-- Business Logic <-- Entity Framework Model <-- SQL Database
One of "some app" would be Silverlight, but there as well will be lots of other clients (mainly mobile devices).
To me the greatest benefit of having RIA services is possibility of making ordinary (not asynchronous) calls from Silverlight.
I wondered if there is an easy way of converting what I have so far to be a RIA service?
I as well wonder if there is a point of doing so if I plan to use the same service for multiple platforms/clients?
Any help/links would be greatly appreciated.