100

我有以下代码用于指定 SQL 查询的参数。使用时出现以下异常Code 1;但是当我使用Code 2. 在Code 2我们有一个空检查,因此是一个if..else块。

例外:

参数化查询“(@application_ex_id nvarchar(4000))SELECT E.application_ex_id A”需要参数“@application_ex_id”,但未提供该参数。

代码 1

command.Parameters.AddWithValue("@application_ex_id", logSearch.LogID);

代码 2

if (logSearch.LogID != null)
{
         command.Parameters.AddWithValue("@application_ex_id", logSearch.LogID);
}
else
{
        command.Parameters.AddWithValue("@application_ex_id", DBNull.Value );
}

问题

  1. 您能否解释一下为什么它无法从代码 1 中的 logSearch.LogID 值中获取 NULL(但能够接受 DBNull)?

  2. 有更好的代码来处理这个吗?

参考

  1. 将 null 分配给 SqlParameter
  2. 返回的数据类型因表中的数据而异
  3. 从数据库 smallint 到 C# nullable int 的转换错误
  4. DBNull 的意义何在?

代码

    public Collection<Log> GetLogs(LogSearch logSearch)
    {
        Collection<Log> logs = new Collection<Log>();

        using (SqlConnection connection = new SqlConnection(connectionString))
        {
            connection.Open();

            string commandText = @"SELECT  *
                FROM Application_Ex E 
                WHERE  (E.application_ex_id = @application_ex_id OR @application_ex_id IS NULL)";

            using (SqlCommand command = new SqlCommand(commandText, connection))
            {
                command.CommandType = System.Data.CommandType.Text;

                //Parameter value setting
                //command.Parameters.AddWithValue("@application_ex_id", logSearch.LogID);
                if (logSearch.LogID != null)
                {
                    command.Parameters.AddWithValue("@application_ex_id", logSearch.LogID);
                }
                else
                {
                    command.Parameters.AddWithValue("@application_ex_id", DBNull.Value );
                }

                using (SqlDataReader reader = command.ExecuteReader())
                {
                    if (reader.HasRows)
                    {
                        Collection<Object> entityList = new Collection<Object>();
                        entityList.Add(new Log());

                        ArrayList records = EntityDataMappingHelper.SelectRecords(entityList, reader);

                        for (int i = 0; i < records.Count; i++)
                        {
                            Log log = new Log();
                            Dictionary<string, object> currentRecord = (Dictionary<string, object>)records[i];
                            EntityDataMappingHelper.FillEntityFromRecord(log, currentRecord);
                            logs.Add(log);
                        }
                    }

                    //reader.Close();
                }
            }
        }

        return logs;
    }
4

4 回答 4

163

烦人是不是。

您可以使用:

command.Parameters.AddWithValue("@application_ex_id",
       ((object)logSearch.LogID) ?? DBNull.Value);

或者,使用像“dapper”这样的工具,它会为你做所有这些事情。

例如:

var data = conn.Query<SomeType>(commandText,
      new { application_ex_id = logSearch.LogID }).ToList();

很想向 dapper 添加一种方法来获得IDataReader……还不确定这是否是一个好主意。

于 2012-11-19T09:43:33.093 回答
55

SqlParameterCollection我发现只为处理空值编写一个扩展方法更容易:

public static SqlParameter AddWithNullableValue(
    this SqlParameterCollection collection,
    string parameterName,
    object value)
{
    if(value == null)
        return collection.AddWithValue(parameterName, DBNull.Value);
    else
        return collection.AddWithValue(parameterName, value);
}

然后你就这样称呼它:

sqlCommand.Parameters.AddWithNullableValue(key, value);
于 2014-08-22T00:26:13.100 回答
4

以防万一您在调用存储过程时这样做:我认为如果您在参数上声明默认值并仅在必要时添加它,则更容易阅读。

SQL:

DECLARE PROCEDURE myprocedure
    @myparameter [int] = NULL
AS BEGIN

C#:

int? myvalue = initMyValue();
if (myvalue.hasValue) cmd.Parameters.AddWithValue("myparamater", myvalue);
于 2015-10-23T13:57:39.647 回答
0

一些问题,允许设置 SQLDbType

command.Parameters.Add("@Name", SqlDbType.NVarChar);
command.Parameters.Value=DBNull.Value

您在哪里键入 SqlDbType.NVarChar。必须设置 SQL 类型。

于 2013-08-30T20:58:14.823 回答