public string EntityFunction([FromODataUri] ConventionOrder order)
 {
     Assert.NotNull(order);
     return(order.Price.ToString(CultureInfo.InvariantCulture));
 }
 public string EntityFunction([FromODataUri] ConventionOrder order)
 {
     Assert.NotNull(order);
     return("" + order.Price);
 }