У меня есть настольная лицензия, как показано ниже
table Licence
[ LID(pk) int,
ProID(FK) int,
SK string,
QTY int,
LIS int,
LIU int
]
, и у меня есть "chklin" в качестве хранимой процедуры для получения LIU.
procedure [dbo].[chklin]
(@LID int)
as
begin
select LIU from license where LID=@LID
end
Теперь в моем контроллере лицензий у меня есть действие ниже
public ActionResult Chk(int L)
{
SLMEntitiesDB dbContext = new SLMEntitiesDB();
dbContext.chklin(L) // this should check the LIU value, how to pass it
to below IF statement
if (A == 0)
{
ViewBag.Message = "No more license available";
}
else
{
return RedirectToAction("create", "users");
}