大家好,我有方法将一些参数传递给存储过程,当我执行它时,我得到了这个错误
[从具体化的“System.Int32”类型到“System.String”类型的指定转换无效。]
这就是我如何调用我的存储过程
public JsonResult CreatedBugs()
{
int year;
int month;
int projectid;
year = 2012;
month = 8;
projectid = 16;
var loggedbugs = db.ExecuteStoreQuery<LoggedBugs>("LoggedBugs @Year,@Month,@ProjectID", new SqlParameter("@Year",year ), new SqlParameter("@Month", month ), new SqlParameter("@ProjectID", projectid )).ToList();
var ClosedBugs = db.ExecuteStoreQuery<LoggedBugs>("ClosedBugs @Year,@Month,@ProjectID", new SqlParameter("@Year", year), new SqlParameter("@Month", month), new SqlParameter("@ProjectID", projectid)).ToList();
var model = new LoggedBugs
{
LoggedBugsCount = loggedbugs,
ClosedBugs = ClosedBugs
};
return Json(model, JsonRequestBehavior.AllowGet);
}
这是我的存储过程
alter procedure LoggedBugs
(
@Year int,
@Month int,
@ProjectID int
)
as
begin
SELECT projectName,
ProjectYear,
ProjectMonth,
Week1, Week2, Week3, Week4, Week5
FROM (
Select p.projectName,YEAR(b.CreatedDate) ProjectYear, MONTH(b.CreatedDate) ProjectMonth,
'Week' + CAST(DATEDIFF(week, DATEADD(MONTH, DATEDIFF(MONTH, 0, b.CreatedDate), 0), b.CreatedDate)+1 AS VARCHAR) as [Weeks],
b.BUGID
From BUGS b inner join projects p on b.ProjectId = p.ProjectId
Where DatePart(year, CreatedDate) = @Year and datepart(month, Createddate) = @Month and b.projectid = @ProjectID
) p
PIVOT (COUNT(BUGID) FOR [Weeks] IN (WEEK1, WEEK2, WEEK3, Week4, Week5)) AS pvt
end
我在哪里做错了
编辑1
这是我的 LoggedBug 类
public class LoggedBugs
{
public string projectName { get; set; }
public string ProjectYear { get; set; }
public string ProjectMonth { get; set; }
public string Week1 { get; set; }
public string Week2 { get; set; }
public string Week3 { get; set; }
public string Week4 { get; set; }
public string Week5 { get; set; }
public IEnumerable<LoggedBugs> LoggedBugsCount { get; set; }
public IEnumerable<LoggedBugs> ClosedBugs { get; set; }
}