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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T22:13:12+00:00 2026-06-01T22:13:12+00:00

I have an N-N relationship between two elements Sfera and Contenuti. On the Sfera

  • 0

I have an N-N relationship between two elements Sfera and Contenuti.

On the Sfera item I see the Contenuti entity set and in the Contenuti I see the Sfera set..

When I add a new item by code i use a structure like:

using (IndexDB DB = new IndexDB())
        {
            try
            {
                var newContenuto = new Contenuto();
                newContenuto.Cancellato = false;
                newContenuto.PK_Content_ID = tt_content_id;
                newContenuto.URL = URL;
                foreach(long sphere in SphereID)
                {
                    try
                    {
                        var sfere = from sfera in DB.Sfera where sfera.PK_Sfera == sphere select sfera;
                        newContenuto.Sfera.Add(sfere.First());
                        sfere.First().Contenuto.Add(newContenuto);
                    }
                    catch (Exception exc)
                    {
                        return new StandardResponse() {Success = false, Message = exc.Message};
                    }
                }
                DB.AddToContenuto(newContenuto);
                DB.SaveChanges();
                return new StandardResponse() {Success = true};
            }
            catch (Exception e)
            {
                return new StandardResponse() { Success = false, Message = e.Message + e.StackTrace };
            }

If I take a look on my DB, it stores well my relation between the two elements in the right “N-N” table…. But when i try to access the elements Contenuto.Sfera and Sfera.Contenuto are ALWAYS empty set…

To access I do something like that:

using (IndexDB DB = new IndexDB())
        {
            var sfere = from sfera in DB.Sfera where sfera.PK_Sfera == IDSfera && sfera.Attiva select sfera;

            if (!sfere.Any())
            {
                response.Add(new UrlResponse() { Success = false, ErrorMessage = "" });
            }
            var sferaSelezionata = sfere.First();
//HERE sferaSelezionata.Contenuto.Count == 0 even if on DB there are MANY "connections"
}

}

How can I handle this?

Thank you very much!

  • 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-01T22:13:13+00:00Added an answer on June 1, 2026 at 10:13 pm

    Try using Include() in your query.

    var sfere = from sfera in DB.Sfera.Include("Contenuto") where sfera.PK_Sfera == IDSfera && sfera.Attiva select sfera; 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple has_one/belongs_to relationship between two models. This is a new association
I have a one to many entity relationship between two entities: EntityP (Parent) <-->>
I am using Entity Framework 4. I have a many-to-many association (relationship) between two
I have a many-to-many relationship between two tables: Order and Item. I need to
Suppose i have a one to many relationship between two model entities Entity One
I have a fairly simple Many to One relationship between two classes: @Entity public
I have a relationship between two tables, authors and styles. Every author is associated
I have a one to many relationship between two tables. The many table contains
I have a many-to-many relationship between two tables, let's say Friends and Foods. If
I have a one-to-many relationship between two classes for this situation. I have a

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.