Service Layer which can switch between Web Service Layer and Data Access Layer

Posted by Blake Blackwell on Stack Overflow See other posts from Stack Overflow or by Blake Blackwell
Published on 2010-05-10T19:51:58Z Indexed on 2010/05/10 19:54 UTC
Read the original article Hit count: 308

Filed under:

I am building an application that will function as a client-server application, and also as a disconnected client application. I will be using WPF (browser app for client-server application).

When interacting with the server's database, I will need to connect using WCF web services. When connecting with the localized database, I will need to connect using the local db's data access layer.

What methods/patterns exist for this sort of architecture?

© Stack Overflow or respective owner

Related posts about .NET