Being used to using LINQ queries and Early Bound for fetching Dynamics data, anonymous return types are a great way to return more than one entity type for instance when using joins.
Is there a way to convert the standard EntityCollection return type to anonymous type using this library ie.:
... x => new { account = x.account, contact = x.contact }
Being used to using LINQ queries and Early Bound for fetching Dynamics data, anonymous return types are a great way to return more than one entity type for instance when using joins.
Is there a way to convert the standard EntityCollection return type to anonymous type using this library ie.: