$compute clause #115
trojanmartin
started this conversation in
Ideas
Replies: 1 comment
-
It looks very involved. Take the filter example from dev-blogs here. Assuming: public class MyModel
{
double Price { get; set; }
double TotalPrice { get; set; }
int Qty { get; set; }
}
public class MyData
{
double Price { get; set; }
int Qty { get; set; }
}
The first step happens irrespective of Plus different solutions for different You'll be able to tell us more if you decide to get into it. Thanks. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm thinking about implementation of the $compute OdataQueryOption. In current approach this library is using automapper ProjectTo method which does the projection. With $compute is possible add dynamic properties. Any advices how that can be achieved with current approach?
Beta Was this translation helpful? Give feedback.
All reactions