Hi,
new RelationPredicateBucket(VwStatsOrderTownBreakdownFields.EventId == selectedEvent);
I have several entities with an 'EventId' field and I would like to factor out the creation of the RelationPredicateBucket that filters on this field.
Is it possible to do this with a string of the entity's type name and within a medium trust environment i.e. no reflection?
So something like this...
[code]new RelationPredicateBucket(typename["EventId"] == selectedEvent);
Cheers, Ian.