2

我正在研究 WCF、实体框架、自跟踪解决方案。

我的 ESQL 有问题。

string cmd = "Select h.achAccId, p.patDOBirth, p.patGender from PatientEntities.AccBases as a, PatientEntities.AccHosps as h, PatientEntities.Patients as p Where h.achAccID = 57348 and p.patPatId = a.acbPatId and h.achAccId = a.acbAccId";


ObjectQuery<dbdatarecord>queryResult = null; 

using (PatientEntities db = new PatientEntities()) PatientEntities is ObjectContext  
{  
    `queryResult = db.CreateQuery<dbdatarecord>(cmd);`  
}

if ((queryResult != null) && (queryResult.Count() > 0))   
{  
    `...`  
}   

queryResult.Count()导致错误:“'achAccID' 在当前加载的架构中不是'PatientModel.AccHosp' 类型的成员”

我在PatientModel.edmxfile下找到了,下面<EntityType Name="AccHosp"><property Name="achAccID" Nullable="false" Type="int">

那么真正的问题是什么?

4

1 回答 1

0

ESQL 没有问题。数据上下文需要刷新。IE。db.Refresh(RefreshMode.StoreWins, db.AccHosps);

于 2013-03-10T23:49:50.923 回答