We are considering purchasing your ORM. How do we databind (read and write) a textbox to our Entity.Entity.Entity (in our case completionNote.MaintenanceItem.Vehicle). We have prefetched the related entities and verified they contain the right data. We looked at creating a dynamic list using the "ResultsetFields" and projecting the data into a custom typed class to which we databound to the form controls.
Using:
-LLBLGen Pro v2.5 Final DEMO
-Adapter .NET 2.0
-SQL Server 2005 Express
Is this a web app or a windows app?
Do you want to only bind one field or all/most of the 3rd level entity fields?
We looked at creating a dynamic list using the "ResultsetFields" and projecting the data into a custom typed class to which we databound to the form controls.
Flaten the graph using a TypedList/DynamicList can be a good workaround.
It's a windows app. I only want to bind one of the 3rd level entity fields. I realize we could use a TypedList but then we would loose the capability to write to the entity fields (as I understand it).