Class QueryComputeRequest
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents a computed column request.
public class QueryComputeRequest
- Inheritance
-
objectQueryComputeRequest
Properties
Expression
Gets or sets the expression to evaluate. Supports column references, arithmetic operations, and functions. Example: "[Price] * [Quantity]" or "Math.Round([Value], 2)"
public string Expression { get; set; }
Property Value
- string
ResultColumn
Gets or sets the name for the result column.
public string ResultColumn { get; set; }
Property Value
- string