Entity Framework Overhead

93 Views Asked by At

I am building an application that will interface with my database backend using EF 6. I have my database built so I will be going the database first approach.

One of the goals will be to utilize the grid control from DevExpress and allow the user to view a Master/Detail style of information for each Facility in my Facility table.

I need the ability to update/insert so I would assume using a view would not be as good as actually supplying the context to the grid's data source.

My question is trying to understand the overhead involved with Entity Framework. If my table contains 20 columns but my Grid only needs 10 of these for viewing/updating/inserting does the application still load ALL of the information into memory? Am I better off using a view for the grid and some form of custom routines for an update?

1

There are 1 best solutions below

2
On

It doesn't necessarily load all of the columns. If you're smart about it, you can only have it load those columns that you need using LINQ to Entities.

For example:

var records = db.MyTable.Where(...Some condition...).ToList(); will return all the columns.

But doing it this way

`var records = db.MyTable.Where(...Some condition...).Select(x => new MyModel { ...some fields here... }

will only load those fields that are specified.

I've worked with DevExpress and Entity Framework combined before, and I can tell you that it's relatively painless as long as you understand what you're doing with Entity Framework, and don't just blindly have your grids make queries that can get expensive.