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 3331736
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:36:53+00:00 2026-05-17T23:36:53+00:00

I am just learning the Entity Framework and have made some good progress on

  • 0

I am just learning the Entity Framework and have made some good progress on incorporating it with my layered code structure. I have 2 visual layers, a business layer and a data access layer.

My problem is in passing entity object between layers. This code sample does not work:

// BLL
public static void Test1()
{
 List<User> users = (from u in GetActiveUsers()
      where u.ID == 1
      select u).ToList<User>();

 // Do something with users
}

// DAL
public static IQueryable<User> GetActiveUsers()
{
 using (var context = new CSEntities())
 {
  return from u in context.Users
      where u.Employee.FirstName == "Tom"
      select u;
 }
}

I get the error message The ObjectContext instance has been disposed and can no longer be used for operations that require a connection.

If I remove the using from the GetActiveUsers method, it works fine.

I know this is dangerous practice as the GC can dispose of the context at any given time and screw up my BLL.

So, what is the correct way to pass information between layers? Do I need to pass the context around as well?

  • 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-17T23:36:53+00:00Added an answer on May 17, 2026 at 11:36 pm

    Because you are returning IQueryable from your DAL, you cannot use the using statement.

    The query is deferred until to are firing the query – .ToList in your BLL.

    By that time, the context is disposed.

    Think carefully about using IQueryable, as it is risky practice without knowing all the details.

    Since you are still learning EF, i would keep it simple:

    // BLL
    public static void Test1()
    {
     List<User> users = GetActiveUsers();
     var singleUser = users.SingleOrDefault(u => u.ID == 1);
    
     // Do something with users
    }
    
    // DAL
    public static ICollection<User> GetActiveUsers()
    {
     using (var context = new CSEntities())
     {
      var users = from u in context.Users
          where u.Employee.FirstName == "Tom"
          select u;
      return users.ToList();
     }
    }
    

    If you want to get a single user, create another method:

    // DAL
    public static User GetSingleActiveUser(int userId)
    {
     using (var context = new CSEntities())
     {
      var users = from u in context.Users
          where u.Employee.UserId == userId
          select u;
      return users.SingleOrDefault();
     }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've just started learning how to use the Entity Framework to write a very
I am just starting out with ADO.net Entity Framework I have mapped two tables
I am just learning to use the Entity framework and I wondered how I
I am just learning about app.config in respect of creating custom sections. I have
I'm just learning how to do things, and want to start using some sort
I'm just learning ruby and trying to understand the scope of code executed in
I'm just learning Qt with C++. I have successfully implemented signals and slots to
Okay I'm still learning the ropes with the Entity Framework and I came across
I am just learning maven, and we have recently needed to go more and
I'm just learning how to code for the iPhone using Objective-C, and I don't

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.