Table of Contents

Class InOperatorResult

Namespace
Cuemon.Data
Assembly
Cuemon.Data.dll

Provides the result of an InOperator<T> operation.

public class InOperatorResult
Inheritance
Object
InOperatorResult

Properties

Arguments

Gets the arguments for the IN operator.

public IEnumerable<string> Arguments { get; }

Property Value

IEnumerable<String>

The arguments for the IN operator.

Remarks

Default format of arguments is @paramAbcdef0, @paramAbcdef1, @paramAbcdef2, etc. and is controlled by the ArgumentsSelector(T, Int32) method.

Parameters

Gets the parameters for the IN operator.

public IEnumerable<IDataParameter> Parameters { get; }

Property Value

IEnumerable<IDataParameter>

The parameters for the IN operator.

Methods

ToParametersArray()

Converts the parameters for the IN operator to an IDbDataParameter[].

public IDataParameter[] ToParametersArray()

Returns

IDataParameter[]

An array of System.Data.IDbDataParameter.

ToString()

Returns a System.String that represents this instance.

public override string ToString()

Returns

String

A System.String that represents this instance.