I have a question about layering ...
Is it correct to pass the LLBLGenEntities to UI?
(UI is showing in XML, Text, Dialog or Command Line or anything else...)
I think it wil be very complex ...
My solution is creating a DataStructure(DS) from related LLBLGen entities and BOL object have a read and Save(DS) method.
For eample an OrderDS may be related to ItemEntity, SupplierEntity, InventoryEntity, ...
In this solution it is possible to fill this DS by XML, text file, or in Window Dialog or even Command Line ... and after filling it, the Save(DS) will be called ...
If i want to use LLBLGen Entities in UIL, I should know the DB Design in UIL and filling the entities according to DB Design, and it will be very complex. But DS usually is simpler!
Are you agree?
I will be pleased to know ur IDEA ...