IRelationalParameterBuilder Interface

Definition

Builds a collection of IRelationalParameter.

This type is typically used by database providers (and other extensions). It is generally not used in application code.

public interface IRelationalParameterBuilder
type IRelationalParameterBuilder = interface
Public Interface IRelationalParameterBuilder

Properties

Parameters

The collection of parameters.

Methods

AddCompositeParameter(String, Action<IRelationalParameterBuilder>)

Adds a parameter that is ultimately represented as multiple DbParameters in the final command.

AddParameter(String, String)

Adds a parameter.

AddParameter(String, String, IProperty)

Adds a parameter.

AddParameter(String, String, RelationalTypeMapping, Boolean)

Adds a parameter.

AddPropertyParameter(String, String, IProperty)

Adds a parameter.

AddRawParameter(String, DbParameter)

Adds a parameter.

Applies to