- I presume that the Interfaces assembly is deployed with the client?
Yes, should be available at the client side.
- Your Service class seems to be the equivalent of my BL Manager classes with its Fetches, Saves & Deletes.
Exactly.
Is it deployed Client side or Server side?
The Service should be on the Server side.
Is there any significance to it being in a namespace called RemotingService - whats in a name
No problem.
- Finally on the Server: DbSpecific, DbGeneric, ORMSupport ?
Yes.
The remoting example contains 2 solutions, one is called the Service and the other is called the client.
What's in the service stays in the Server side (All projects and references).
And what's in the Client need to be in the client side (All projects and references).
The client needs the Interface to define the Service methods.
Also the client needs references to the DBGeneric and the ORMSupport to be able to deal with LLBLGen objects.