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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T18:47:14+00:00 2026-06-10T18:47:14+00:00

I am simply creating a new object that has one to on relationship. A

  • 0

I am simply creating a new object that has one to on relationship. A comment to a User relation. When I try to retrieve the new object I get the error Cannot access a disposed object. I am not sure what is going on. Thanks for any help or suggestions.

     using (var db = new LinqEntityDataContext())
            {

                var comment = new Comment();
                comment.CommentBy = GlobalVariables.User.ID;
                comment.OutPutMessage = commentText.Trim();
                comment.PhotoID = int.Parse(pictureID);
                comment.CommentDate = DateTime.Now;
                db.Comments.InsertOnSubmit(comment);
                db.SubmitChanges();
                return comment;
            }
  • 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-06-10T18:47:15+00:00Added an answer on June 10, 2026 at 6:47 pm

    You need to set the return comment; after the last bracket.

    You are finishing the function just before the Dispose, that’s why you get the Exception

    Something like this.

     var comment = new Comment();
     using (var db = new LinqEntityDataContext())
                {               
                    comment.CommentBy = GlobalVariables.User.ID;
                    comment.OutPutMessage = commentText.Trim();
                    comment.PhotoID = int.Parse(pictureID);
                    comment.CommentDate = DateTime.Now;
                    db.Comments.InsertOnSubmit(comment);
                    db.SubmitChanges();              
                }
      return comment;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is actually faster? Simply creating a new ArrayList/ArrayCollection or re-using an existing one
I'm updating or creating an entity that has a child relationship, say the aggregate
I'm creating an application in Node that has some CRUD components. On one of
I am new to XNA, and I am creating a simple game. Sorry that
I am creating a script that I can run and it will simply ask
I am creating a new object for export values to CSV: New-Object -TypeName PSObject
I have a few spots in my code where I'm simply creating a new
ThisAddIn class created with new Outlook VSTO C# project has a Application property that
I have a simple relationship: I have a Note object, which has a related
When I'm creating a simple Windows form, is it starting in a new thread

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.