ScalarValueCondition.NullExpected Property
Gets or sets a value that indicates whether the ExpectedValue expects a null value.
Namespace: Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions
Assembly: Microsoft.Data.Tools.Schema.Sql.UnitTesting (in Microsoft.Data.Tools.Schema.Sql.UnitTesting.dll)
Syntax
public bool NullExpected { get; set; }
public:
property bool NullExpected {
bool get();
void set(bool value);
}
member NullExpected : bool with get, set
Public Property NullExpected As Boolean
Property Value
Type: System.Boolean
Remarks
This property is automatically set to true when the ExpectedValue is null. If you set NullExpected to true, ExpectedValue is automatically set to null.
See Also
ScalarValueCondition Class
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions Namespace
Return to top