Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
268 views
in Technique[技术] by (71.8m points)

c# - Why can I not see the property Local when using Entity Framework?

I know I am missing something completely obvious, but why can't I see the property Local when working with an EF context? The typical example online looks like the following:

context.Parents.Local

But I am unable to see the Local property. Now from what I understand, Local is a member of the DbSet class, and I don't think I'm working with a DbSet in my application. What I do know is I've added a reference to the EntityFramework, have using System.Data.Entity and everything else I'm familiar with doing is working just fine. Except Local isn't there, and I really do need some sorting capability for my DataGridView.

Help!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

DbContext, DbSet etc. are part Entity Framework 4.1/4.2 which is shipped, among others, as the EntityFramework NuGet package. With just the .NET Framework you only have what is now called "Core EF Runtime" according to this:

In short, you need to install EF 4.1/4.2.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...