我已经回顾了很多答案,但是,我认为它应该比循环结果或重新绑定并使用SqlDataAdapters
更容易。
在我的情况下,性能非常重要,
在DataTable
为econtext
的C#或VB.Net的DbContext
中获取以下查询的最快方法是什么?
Dim r = (From AdCustomProperties In econtext.AdCustomProperties
Where AdCustomProperties.AdID = AdID
Select AdCustomProperties.PropertyTitle2, AdCustomProperties.PropertyValue2)
答案 0 :(得分:3)
如果您真的担心要挤出最后一盎司的性能并且需要更快的方法将数据放入数据表而不是绑定到实体,那么您应该考虑使用ADO.NET而不是EF。