You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
I have this computed property
[Computed]
public decimal CostoCalcolato
{
get
{
return Fornitore + Facon + Tessuto + Fodera + Accessori + TrasportoInterno + TrasportoCliente + TrasportoAccessori + Dogana + ImportoFinanziamento + Varie;
}
}
in my model, all properties used in the get method are decimal, the error i get is: NotSupportedException();
In the basecode it comes from VisitMethodCall(MethodCallExpression m) in KnockouExpressionConverter.cs.
The Methodname i get is op_Addition that is not supported.
I'm missing something?
The text was updated successfully, but these errors were encountered:
I have this computed property
[Computed]
public decimal CostoCalcolato
{
get
{
return Fornitore + Facon + Tessuto + Fodera + Accessori + TrasportoInterno + TrasportoCliente + TrasportoAccessori + Dogana + ImportoFinanziamento + Varie;
}
}
in my model, all properties used in the get method are decimal, the error i get is: NotSupportedException();
In the basecode it comes from VisitMethodCall(MethodCallExpression m) in KnockouExpressionConverter.cs.
The Methodname i get is op_Addition that is not supported.
I'm missing something?
The text was updated successfully, but these errors were encountered: