我想计算一段时间内的记录数。
使用Npgsql我准备查询,然后添加变量部分(出于安全原因):
lCommand.CommandText =
"select count(*) from eggs where machineserial = :p1 and timestamp > :p2 and timestamp < :p3;";
lCommand.Parameters.AddWithValue("p1", mId);
lCommand.Parameters.Add("p2", NpgsqlTypes.NpgsqlDbType.Timestamp);
lCommand.Parameters["p2"].Value = aStartDate;
lCommand.Parameters.Add("p3", NpgsqlTypes.NpgsqlDbType.Timestamp);
lCommand.Parameters["p3"].Value = aEndDate ;
int lNumberEggs = 0;
try
{
lNumberEggs = (int)await lCommand.ExecuteScalarAsync();
}
finally
{
Helpers.clsDatabaseHelper.FinishCommand(lCommand);
}
执行查询时,它会因InvalidCastException而崩溃。
我做错什么了?
最佳答案
啊,我知道我做错了什么。
当然,还有一个cast,它是(int)
函数前面的ExecuteScalarAsync
。
这返回一个对象,显然不是int!
使用Convert.ToInt32
就可以了。