To Remote or Not to Remote?
Forgive me if my terminology is not 100% correct.
After developing software (all Windows form apps) for many years for small companies, I recently crawled out from underneath my rock and discovered the concept of Remoting and/or WCF. In all the projects I've worked on in the past, we've always had each of the client machines connect directly to a database server. It's recently occured to me, after reading "Microsoft .Net: Architecting Applications for the Enterprise", that it might make more sense to expose our business objects as POCO objects via WCF, that way our client application would not need the database client software installed on each machine (all that goes with it, like another db user license per machine). Our client app would only have to connect to our WCF service that possible exposes a "Service Layer" as a wrapper around our business objects.
Am I crazy, or is this a common approach in distributed applications?
And further, what ORM solution could be pointed at a database and create a DAL and business objects that can then be exposed via WCF?
I also can't quite wrap my mind around how lazy loading would work in this scenario...
Thanks, Jonathan