FilterNodeOperator 构造函数
Initializes a new instance of the FilterNodeOperator class with the specified operator type, left parameter, and right parameter. 不要在您的代码中直接引用此成员。它支持 SQL Server 基础结构。
命名空间: Microsoft.SqlServer.Management.Sdk.Sfc
程序集: Microsoft.SqlServer.Management.Sdk.Sfc(在 Microsoft.SqlServer.Management.Sdk.Sfc.dll 中)
语法
声明
Public Sub New ( _
opType As FilterNodeOperator.Type, _
left As FilterNode, _
right As FilterNode _
)
用法
Dim opType As FilterNodeOperator.Type
Dim left As FilterNode
Dim right As FilterNode
Dim instance As New FilterNodeOperator(opType, _
left, right)
public FilterNodeOperator(
FilterNodeOperator.Type opType,
FilterNode left,
FilterNode right
)
public:
FilterNodeOperator(
FilterNodeOperator.Type opType,
FilterNode^ left,
FilterNode^ right
)
new :
opType:FilterNodeOperator.Type *
left:FilterNode *
right:FilterNode -> FilterNodeOperator
public function FilterNodeOperator(
opType : FilterNodeOperator.Type,
left : FilterNode,
right : FilterNode
)
参数
- opType
类型:Microsoft.SqlServer.Management.Sdk.Sfc.FilterNodeOperator.Type
The type of operator.
- left
类型:Microsoft.SqlServer.Management.Sdk.Sfc.FilterNode
The filter node in the left side.
- right
类型:Microsoft.SqlServer.Management.Sdk.Sfc.FilterNode
The filter node in the right side.