Hi,
I would like to use LLBLGen as a service, after wrapping it.
My application(s) will reach this service remotely using Web Services or .NET Remoting.
I want my clients to be independent of LLBLGen architecture.
I am thinking of using .NET structs instead of classes when passing data between service and applications.
It's ok for single row operations. I have tested the serialization / deserialization speed of structs, also its cheap to keep them in memory for caching.
What is the best practice of doing this type of application?
Do I pass ILists or DataTables between service & applications?
What is the less memory / CPU consuming way to convert or serialize LLBLGen Entitites / Views to?