How we can increase the performance of Entity Framework?
1) Split related objects in different entity model, to reduce complexcity of single entity model.2) Read only required required fields avoid to load all fields.3) Retrived only required amount of records.4) Avoid change/disable change tracking if not needed.5) Use native query in complex relationship.