WCF Rest services for use with the repository pattern?
- by mark smith
Hi there,
I am considering moving my Service Layer and my data layer (repository pattern) to a WCF Rest service.
So basically i would have my software installed locally (WPF client) which would call the Service Layer that exists via a Rest Service... The service layer would then call my data layer using a WCF Rest Service also OR maybe just call it via the DLL assembly
I was hoping to understand what the performance would be like. Currently I have my datalayer and servicelayer installed locally via DLL Assemblies locally on the pc.
Also i presume the WCF REST services won't support method overloading hance the same name but with a different signature??
I would really appreciate any feedback anyone can give.
Thanks