MscrmTools.FluentQueryExpressions icon indicating copy to clipboard operation
MscrmTools.FluentQueryExpressions copied to clipboard

returning/converting EntityCollection to anonymous/Early Bound type

Open siggipop opened this issue 3 months ago • 0 comments

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 } 

siggipop avatar Mar 20 '24 18:03 siggipop