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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:46:18+00:00 2026-06-09T10:46:18+00:00

I have a set of objects that map to my database and are populated

  • 0

I have a set of objects that map to my database and are populated correctly, however I have a case when I need to return a collection of objects based on a value of a grandchild object. The relationships between these objects are causing me issues to sucessfully create this linq query.

The objects are as follows:

public class Pet
{
    public int PetID { get; set; }
    public string Name { get; set; }

    public virtual int ToyID { get; set; }
    public virtual Toy Toy { get; set; }
}

public class Toy
{
    public int ToyID { get; set; }
    public string Name { get; set; }

    public virtual ICollection<Owner> Owners { get; set; }
    public virtual ICollection<Pet> Pets { get; set; }
}

public class Owner
{
    public int OwnerID {get; set;}
    public string Name {get; set;}

    public virtual ICollection<Toy> Toys { get; set; }
}

So basically its a 1 to many to many relationship.

I have a Collection of Pets and I would like restrict depending on the Owner object’s Name 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-06-09T10:46:20+00:00Added an answer on June 9, 2026 at 10:46 am

    What about this?

    Pets.Where( p => p.Toy.Owners.Any(o => o.Name == "OwnerNameYourLookingFor") );
    

    This will return an enumerable of Pets who have an OwnerNameYourLookingFor in their owner list.

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

Sidebar

Related Questions

I have an API that filters a set of objects based on the ID
I have a set of objects that I want to conform to an interface,
I have an odd problem with Django. I have a set of objects that
Say I have a set myset of custom objects that may be equal although
I have a class that serializes a set of objects (using XML serialization) that
I have a class that holds another objects inside it (List, Set and objects
I have a database view that yields a result set that has no true
Ok, NHibernate question here. I have two objects that I would like to map
Lets say I have the following entities that map to database tables (every matching
I have a SQL Server database that contains an xml column. I need to

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.