Hello. I am using the adapter scenerio. 1.0.2004.2.
I have 3 tables that are related as you would expect.
Company
Region
CompanyRegion
I am doing a fetch on "CompanyRegion" (I need some info from the cross table) and prefetching "Company" to get the name of the company.
I am binding my collection of "CompanyRegion"s to a Janus grid and want to have a column that maps to "Company.CompanyName"
my grid has 3 columns
"Company Name" -> Company.CompanyName
"IsSponsor" -> CompanyRegion.IsSponsor
"IsFeatured" -> CompanyRegion.IsFeatured
How do I get the CompanyName column to show up? the data is being return properly through my prefetch, but the binding to the related "Company" Entity is not working.
Is this possible?
thank you
Jason