我有一個存儲過程稱爲pat_selectPatientById
和真或假的使用ISNULL(@isEqual, 0) as IsProviderSameAsPCP
該存儲過程返回。調用存儲過程和檢查返回值
我試圖通過調用Application.WebService.ExecuteQuery("pat_selectPatientById")
調用使用C#方法,此存儲過程。但我沒有任何運氣 - 有人能指引我走向正確的方向嗎?
非常感謝球員
代碼:
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)
是否有您所使用的框架法的ExecuteScalar? –
沒有沒有 – Robert
您可以使用自定義代碼還是必須通過這個方法,你所提到的,即Application.WebService ..? –