SQLクエリのパラメータを指定するための次のコードがあります。Code 1
;を使用すると、次の例外が発生します。しかし、私が使用すると正常に動作しますCode 2
。にCode 2
は、null、つまり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のlogSearch.LogID値からNULLを取得できない(ただしDBNullを受け入れることができる)理由を説明してください。
これを処理するためのより良いコードはありますか?
参照:
- SqlParameterにnullを割り当てます
- 返されるデータ型は、テーブルのデータによって異なります
- データベースsmallintからC#nullableintへの変換エラー
- 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;
}