Property.LessThan Operator (Property, Property)

 

Applies To: SQL Server 2016 Preview

Determines whether one object is less than another object by performing an less than operation on two Property objects.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public static bool operator <(
    Property prop1,
    Property prop2
)
public:
static bool operator <(
    Property^ prop1,
    Property^ prop2
)
static let inline (<)
        prop1:Property *
        prop2:Property : bool
Public Shared Operator < (
    prop1 As Property,
    prop2 As Property
) As Boolean

Parameters

Return Value

Type: System.Boolean

A Boolean object that specifies whether the first object is less that the second object.

If True, the first object is less than the second object.

If False, the first object is not less than the second object.

Examples

Legacy Code Example

Setting Properties

See Also

Property Class
Microsoft.SqlServer.Management.Smo Namespace

Return to top