我是C#的新手。在某些代码中,我看到了一个名为ParameterDirection的属性。谁能告诉我它是什么?它是如何使用的?
答案 0 :(得分:1)
答案 1 :(得分:-1)
ParameterDirection输入,输出,输入输出,返回值有4种类型。 从使用System.Data的命名空间中使用ParameterDirection
可用于如下分配dbull
foreach (SqlParameter param in commandParameters)
{
if( param != null )
{
//It will check for input and output parameter
if ( ( param.Direction == ParameterDirection.InputOutput ||
param.Direction == ParameterDirection.Input ) &&
(param.Value == null))
{
param.Value = DBNull.Value;
}
command.Parameters.Add(param);
}
}