我有一个存储过程如下:
CREATE PROCEDURE [dbo].[MyProc]
@p1 as int,
@p2 as smalldatetime,
@p3 as int,
@p4 as varchar(255),
@p5 as int = null,
@p6 as numeric(18,2) = 0,
@p7 as char(2) = null
AS
...
当我执行以下内容时,我得到结果:
EXEC dbo.MyProc
@p1 = 0,
@p2 = '5/29/2015',
@p3 = NULL,
@p4 = NULL,
@p5 = 233,
@p6 = 0,
@p7 = NULL
但是当我使用Entity Framework的Database.SqlQuery时,我得到The parameterized query '(@p1 bigint @p2 datetime @p3 nvarchar(4' expects the parameter '@p1' which was not supplied.
以下是我使用的代码。
using (var context = new DbContext())
{
context.Database.ExecuteSqlCommand(
@"EXEC dbo.MyProc @p1, @p2, @p3, @p4, @p5, @p6, @p7",
new SqlParameter("p1", 0),
new SqlParameter("p2", myDate), //myDate has value
new SqlParameter("p3", DBNull.Value),
new SqlParameter("p4", DBNull.Value),
new SqlParameter("p5", myValue),//myValue has value
new SqlParameter("p6", 0),
new SqlParameter("p7", string.Empty));//I tried this with DBNull.Value; but no difference
}
有人可以帮忙吗?
答案 0 :(得分:5)
"由于某种原因,当我传递0时,它会转换为 BigInt 。我不知道为什么。 我将0解析为int并且它有效。
using (var context = new DbContext())
{
context.Database.ExecuteSqlCommand(
@"EXEC dbo.MyProc @p1, @p2, @p3, @p4, @p5, @p6, @p7",
new SqlParameter("p1", int.Parse("0"),
new SqlParameter("p2", myDate),
new SqlParameter("p3", DBNull.Value),
new SqlParameter("p4", DBNull.Value),
new SqlParameter("p5", myValue),
new SqlParameter("p6", int.Parse("0")),
new SqlParameter("p7", DBNull.Value));
}
答案 1 :(得分:1)
您需要在参数名称中包含@字符。
char array[4] = { '1', '2', '3', '\0' };
char array[4] = { '1', '2', '3' };
char array[4] = "123";
char array[] = { '1', '2', '3', '\0' };
char array[] = "123";
char *array = "123";
答案 2 :(得分:1)
在声明SqlParameter时,“ @”是可选的,可以使用或不使用。使用SqlParameter重载(字符串,对象)时,可以像这样强制转换一个常量值,例如0:
new SqlParameter("@p1", (object)0)
因为它确实确实希望有一个对象。这也适用于更新的Microsoft.Data.SqlClient程序集。