PostCursorOptionsFailOnWarning Property |
When set to true, the query will throw an exception and abort
instead of producing a warning. This option should be used during development
to catch potential issues early. When the attribute is set to false,
warnings will not be propagated to exceptions and will be returned with the query result.
There is also a server configuration option --query.fail-on-warning for setting
the default value for failOnWarning so it does not need to be set on a per-query level.
Namespace:
ArangoDBNetStandard.CursorApi.Models
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public bool? FailOnWarning { get; set; }
Public Property FailOnWarning As Boolean?
Get
Set
public:
property Nullable<bool> FailOnWarning {
Nullable<bool> get ();
void set (Nullable<bool> value);
}
member FailOnWarning : Nullable<bool> with get, set
Property Value
Type:
NullableBooleanSee Also