Currently I use Onion architecture with domain driven design, IoC, MVP etc... The app is just talking directly to database, but I am worried about scaling to client - server architecture later (seriously, YAGNI is not applicable in my case).
So the question: In a multi-tier architecture, can rich clients use ISession although the NHibernate is on the server, or is it practice to do all this manually with UnitOfWork that somewhat replicates ISession?
I know that this is too simple question for a reaaaaally complex situation, but my goal is to model the architecture for my direct-database-communication solution now so I can have less headache later. I've looked at lots of examples online, one of the best was Ayende's implementation with RhinoBus and message architecture in between, but I must make some time to go through this very slowly... Honestly my head is somewhat still spinning of all the different patterns and anti-patterns :S Building Distributed Apps with NHibernate and Rhino Service Bus and Part 2. One thing to note: there is no ISession on his clients
What I need is some opinions on this, what are the best practices in these cases and such... Any advice is very appreciated!