這可能嗎?如何從存儲過程中選擇SQL到Linq
...
Int32? Id = 1;
QDataContext qDataContext = new QDataContext();
var q= from p in qDataContext.GetProcedurePersonas(Id)
select p.name, p.last;
...
當我運行它,我得到一個錯誤:
Could not find an implementation of the query pattern for source type 'System.Data.Linq.ISingleResult WcfService1.GetProcedurePersonasResult'.
'Select' not found. Are you missing a reference to 'System.Core.dll' or a using directive for 'System.Linq'?
我也有這個和工作完全
...
Int32? Id = 1;
QDataContext qDataContext = new QDataContext();
var q= qDataContext.GetProcedurePersonas(Id);
...
你爲什麼不嘗試一下是否有可能或沒有? –
如果返回類型是一個集合,那麼是的,它應該是可能的。 – James
你有一些exams? – rChavz