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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T13:27:21+00:00 2026-06-17T13:27:21+00:00

OK, so in Entity Framework I have two classes along the lines of, public

  • 0

OK, so in Entity Framework I have two classes along the lines of,

public class User
{
    public int ID { get; set; }
    public string Username { get; set; }
}
public class Post
{
    public int ID { get; set; }
    public string Contents { get; set; }
    public virtual ICollection<User> Likes { get; set; }
}

The problem is, a User can only like one Post at a time – if I do like currPost.Likes.Add(currUser);, it removes that user from whichever post it had liked before, and makes it like this new post. Looking at the database, it turns out that EF isn’t referencing the User from the Post, instead it has a Post_ID column for each user which references a post.

How would I force EF to create an array or something of Users in my Posts table, instead of how it’s doing it now? Am I misunderstanding the point of ICollection (like, should I be using a List or Array instead?) Thanks!

  • 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-17T13:27:22+00:00Added an answer on June 17, 2026 at 1:27 pm

    What you are looking for is a many to many collection. One of the ways EF allows you to do this is with the model builder. Take a look at my post on navigation properties for an example of how to do this (In the Many Relationship section).

    What this is going to do is to create a link table in the database to allow many users to like a post AND many posts to be liked by a user.

    You could then express your model like this:

    public class User
    {
        public int ID { get; set; }
        public string Username { get; set; }
        public virtual ICollection<Post> PostsThisUserLikes {get;set;}
    }
    public class Post
    {
        public int ID { get; set; }
        public string Contents { get; set; }
        public virtual ICollection<User> UsersWhoLikeThis { get; set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have these two classes set up and I want Entity Framework to automatically
I'm using ASP.NET MVC 3 with Entity Framework CodeFirst I have two classes as
I have two Classes (given via Entity Framework) which are in a many to
I have two classes created by Entity Framework based off tables in my db
I am trying to learn Entity framework. Say, I have the following classes class
I am using Entity Framework and I have two tables, a contact relationship table
I'm using Entity Framework Code First v 4.3.0 I have a two entities with
I am using Entity Framework from .NET 3.5 I have two tables with 0-1
I'm pretty new to MVC 2 using the Entity Framework. I have two tables
We have a simple Table per Type Entity Framework 4.0 model :- ALl classes

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.