我正在研究 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.edmx
file下找到了,下面<EntityType Name="AccHosp">
有<property Name="achAccID" Nullable="false" Type="int">
那么真正的问题是什么?