Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7415817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:22:26+00:00 2026-05-29T07:22:26+00:00

Is there any best practice on how to handle the Datacontext in Entity Framework

  • 0

Is there any “best practice” on how to handle the Datacontext in Entity Framework 4?

Currently, I’m doing something like this in every window:

public class MyWindow()
{
    MyEntities() _entities;
    MyWindow()
    {
        _entities = new MyEntities();
        InitializeComponent();
    }
}

and then the loading into a datagrid like this:

    myGrid.ItemsSource= _entities.MyTable;

This is not really clever, because ErrorHandling is made impossible on that.

I’d rather go for a Connection-Class and do something like this:

public class MyData()
{
    public IQueryable<Product> GetAllProducts()
    {
        using(MyContext context = new MyContext())
        {
           return context.Products;
        }
    }
}

But first, this creates a new context-instance every time – isn’t this bad?

Or should I rather handle a global static DataContext in my Connection-Class? Doesn’t get this static variable very overloaded?

public class MyData()
{
    private static MyContext Context = new MyContext();
    public IQueryable<Product> GetAllProducts()
    {
      return Context.Products;
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T07:22:27+00:00Added an answer on May 29, 2026 at 7:22 am

    In entity framework, an ObjectContext/DbContext is a unit of work, their lifetime is meant to be short.

    Having a static context is a definite no-no, as this would use a lot of memory with change tracking entities (every change tracked entity would be cached and stored until the context is disposed).

    Wrapping the context in a using, like your ‘Connection-Class’ example is the right way to go about doing this. This would often be referred to as a Service.

    An example service:

    public class ProductService
    {
        public IEnumerable<Product> GetAllProducts()
        {
            using(MyContext context = new MyContext())
            {
                foreach(var product in context.Products)
                    yield return product;
            }
        }
    }
    

    Be sure to call either ToArray() or ToList() or use yield return(as in my example) when returning a collection of results in a block where the context will be disposed. Failing to do this would mean that when your results are used, deferred execution will attempt to use the disposed context which will result in an exception at runtime.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: C# member variable initialization; best practice? Is there any benefit to this:
Is there any best practice data model for authentication/authorization scheme?
is there any best practice way to replace a part of the default template.
Just checking if there's any best practice when writing a Windows Service. The Service
I'm doing a JSON WebService backend for an iPhone application. Is there any best
Are there any best practices (or even standards) to store addresses in a consistent
Are there any best-practices that state custom code shouldn't be placed in a System
Are there any guidelines/best practices for deciding what type of data should be stored
Are there any patterns or best practices that can be used to simplify changing
Are there any known how-tos or best practices for web service REST API versioning?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.