Need clarification concerning Windows Azure
        Posted  
        
            by 
                SnOrfus
            
        on Programmers
        
        See other posts from Programmers
        
            or by SnOrfus
        
        
        
        Published on 2010-11-22T17:13:04Z
        Indexed on 
            2011/02/06
            15:33 UTC
        
        
        Read the original article
        Hit count: 522
        
I basically need some confirmation and clarification concerning Windows Azure with respect to a Silverlight application using RIA Services.
In a normal Silverlight app that uses RIA services you have 2 projects:
- App
- App.Web
... where App is the default client-side Silverlight and app.web is the server-side code where your RIA services go.
If you create a Windows Azure app and add a WCF Web Services Role, you get:
- App (Azure project)
- App.Services (WCF Services project)
In App.Services, you add your RIA DomainService(s). You would then add another project to this solution that would be the client-side Silverlight that accesses the RIA Services in the App.Services project.
You then can add the entity model to the App.Services or another project that is referenced by App.Services (if that division is required for unit testing etc.) and connect that entity model to either a SQLServer db or a SQLAzure instance.
Is this correct?
If not, what is the general 'layout' for building an application with the following tiers:
- UI (Silverlight 4)
- Services (RIA Services)
- Entity/Domain (EF 4)
- Data (SQL Server)
© Programmers or respective owner