OK, so I have attempted to make a typedlist in the designer and I am running into an issue
I have a table that has this definition:
waterway
waterwayID
boatID
LocationID
and
Location
locationID
description
in my typedlist I use the fields waterwayID,BoatID and the description from location
using build 2.0 my code looks like this:
WaterwaysTypedList waterway = new WaterwaysTypedList();
da.FetchTypedList(waterway.GetFieldsInfo(), waterway, null, 0, null, true);
and Im getting this error: The given key was not present in the dictionary.
Im not sure what I am doing wrong. Any help would be appreciated.