I know I'm just missing something simple here.
I'm returning an index from the FindMatches method of an entity collection and now I want to get a specific entity from the collection using the index, but I seem unable to do so
widgetIndex = widgetEntityCollection.FindMatches(
new PredicateExpression(WidgetEntityFields.SomeId == 1));
How do I get a strongly typed reference to a widgetEntity in the widgetEntityCollection given an index?