Hi
When you have an entity with a (m:1) relation you can make a field mapped on related fields
so it will be possible for a grid to display data from the table with primarykeys. Classic example is postal codes, where you wan't to show city in the master entity.
But I have a problem with the (1:n) relation
My tables are (only relevant fields are shown)
Table packlistHist (master table)
ID, name, address and a lot more
Table UserNotes
ID,packlistHistID,userid,screennote
userid can be treated just like a filter
llblgen generates UserNotes entity on the packlistHist table and I can get the info with prefetchpath, filterted with the userid. Everything works fine.
But the problem is that I wan't to make a field with screennote on the entity packlistHistentity, så that the grid (Infragistics) can show it.
How do I do that?
It's like making fields mapped on related fileds for (1:n) relations and in code. I don't think the designer can do it.
I use lllbgen 2.5 newest version and it's ok to upgrade to 2.6. I can't use Linq from 2.6 version because i am forced to use .net 2.0.