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

  • Home
  • SEARCH
  • 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 5952687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T17:43:00+00:00 2026-05-22T17:43:00+00:00

I have a user class in EF Code First that contains a lot of

  • 0

I have a user class in EF Code First that contains a lot of properties, and each user has a collection of “Contacts” which are other users as a subset of the total user population. The other collection “ContactOfOthers” is just the reverse showing who has this user as a contact as this is a many-to-many relationship.

public class User {

        [Key]
        public string UserName { get; set; }

        // Lots of other properties not relevant to this question...

        [NotMapped]
        public bool IsMyContact { get; set; }

        public virtual ICollection<User> Contacts { get; set; }
        public virtual ICollection<User> ContactOfOthers { get; set; }

}

I introduced a not-mapped (not mapped to DB) property called IsMyContact. This is for cases when the user queries for a bunch of users and I need to show in the View which users are already in their contacts list. So this property should be true if the User is part of their “Contacts” collection. It shouldn’t be saved to the DB since it can be different for the same user, depending on the user doing the query.

Is there a nice way to do this in a query from the context? It could of course be brute-forced by doing two queries then iterating through the main one, looking for matches to the user’s Contacts collection, but I’m wondering if there’s a more elegant way to do this from one query, projecting a run-time computed column onto this property?

  • 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-22T17:43:01+00:00Added an answer on May 22, 2026 at 5:43 pm

    I don’t know a way how to populate the IsMyContact property in the User directly within the query. But an alternative approach could be to introduce a ViewModel which wraps the User and has in addition the IsMyContact flag:

    public class UserViewModel
    {
        public bool IsMyContact { get; set; }
        public User User { get; set; }
    }
    

    (The class User would not have the IsMyContact flag anymore.)

    You could then project into this type when you run your query:

    string me = "That's me"; // name of the user who is selecting
    
    List<UserViewModel> list = context.Users
       .Where(u => ...some filter...)
       .Select(u => new UserViewModel
              {
                  IsMyContact = u.ContactOfOthers.Any(c => c.UserName == me),
                  User = u
              })
       .ToList();
    

    The benefits would be: You need only one round trip and you are not forced to load the whole collection of Contacts to determine the IsMyContactFlag (but you can if you want to).

    The drawback: You need this additional ViewModel type.

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

Sidebar

Related Questions

I have a User class which may or may not have an associated Department.
I have a class called User with static function loginRequired(), which returns false if
I have some logic, which defines and uses some user-defined types, like these: class
I have user control named DateTimeUC which has two textboxes on its markup: <asp:TextBox
I have a User class with reference to a Message class. The message class
we had a heated discussion about a method name. We have a class User
Suppose I have an array of a objects of user defined class. Wanted to
I'm working on a resource management class and want to have the user provide
I have dbml with single table users i want add partial class for User
First, the desired result I have User and Item models. I'd like to build

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.