SqlFunctionAttribute.IsPrecise Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether the function involves imprecise computations, such as floating point operations.
public:
property bool IsPrecise { bool get(); void set(bool value); };
public bool IsPrecise { get; set; }
member this.IsPrecise : bool with get, set
Public Property IsPrecise As Boolean
Property Value
true
if the function involves precise computations; otherwise false
.
Remarks
Precision of a function is one of the properties used to determine if computed columns that use this function can be indexed.
The default value of this attribute is false
.