我有一个名为的存储过程pat_selectPatientById
,该存储过程使用ISNULL(@isEqual, 0) as IsProviderSameAsPCP
.
我正在尝试使用 C# 方法调用此存储过程,方法是调用Application.WebService.ExecuteQuery("pat_selectPatientById")
. 但我没有运气 - 有人能指出我正确的方向吗?
非常感谢各位
代码:
declare @isEqual bit =
(select
top 1 1 as IsEqual
from
Patient p
inner join
[Resource] r on p.ProviderId = r.ResourceId
where
PatientId = @PatientId
and p.PrimaryCareProviderId = r.RefPhysId)