version 1.0.2005.1 final (self-servicing)
VS2005 asp.net 2.0
hiya,
I am performing a "select" on a typedList.
I know that the select statement will return a SINGLE, unique row because the select is a GUID:
eg
currRow = tListCategoryCrumbs.Select("categoryGUID ='" + categoryGUID+ "'");
Is there any way that I can assign currRow as a datatype that will give me the intellisense that I would have if i was working with an entity?
so that intellisense would give me...
currRow.ParentId
currRow.categoryGUID
I have tried to assign the return value of the select method to an entity, but that didn't work.
dalHamilton.EntityClasses.CskStoreCategoryEntity fg = new CskStoreCategoryEntity();
fg = tListCategoryCrumbs.Select("categoryGUID =" + g)[0];
any ideas?
many thanks,
yogi