IRelationalParameter 接口

定义

中的参数 IRelationalCommand。 请注意,此接口仅表示参数的占位符,而不是实际值。 这是因为可以使用不同的参数值多次重复使用同一命令。

此类型通常由数据库提供程序 (和其他扩展) 使用。 它通常不在应用程序代码中使用。

public interface IRelationalParameter
type IRelationalParameter = interface
Public Interface IRelationalParameter

注解

有关详细信息 和示例,请参阅数据库提供程序和扩展的实现

属性

InvariantName

参数的名称。

方法

AddDbParameter(DbCommand, IReadOnlyDictionary<String,Object>)

将 参数作为 DbParameter 添加到 DbCommand

AddDbParameter(DbCommand, Object)

将 参数作为 DbParameter 添加到 DbCommand

适用于