本文介绍了如何访问动态类型的变量以从实体框架中的查询中检索数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 dynamic firstquery = null; firstquery = 来自 FeeCollection in context.tbl_FeeCollection 选择 new { FeeCollection.Createddatetime, FeeCollection.StudentID }; 如何访问StudentID和Createddatetime?我试过以下代码 foreach(在firstquery中的var项目) { item.StudentID //这里错误 } 解决方案 dynamic firstquery = null;firstquery = from FeeCollection in context.tbl_FeeCollection select new { FeeCollection.Createddatetime, FeeCollection.StudentID };How can I access StudentID and Createddatetime?I have tried following codeforeach(var item in firstquery){item.StudentID // here error} 解决方案 这篇关于如何访问动态类型的变量以从实体框架中的查询中检索数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 11-02 03:11