如果我在DataSet Designer中运行存储过程,它会返回一个很好的值。但是当我在代码中调用存储过程时,它什么都不返回。
Private Function TotalAssignedHoursPerTopic(intNewTopic As Long) As Long
Dim lngHours As Long
lngHours = CLng(QueriesTableAdapter.TotalAssignedHoursPerTopic(intNewTopic))
Return lngHours
End Function