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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T11:31:52+00:00 2026-05-19T11:31:52+00:00

Let say I have the following classes: Product { ID, Name } Meta {

  • 0

Let say I have the following classes:

Product { ID, Name }

Meta { ID, Object, Key, Value }

Category { ID, Name }

Relation {ID, ChildID, ParentID } (Child = Product, Parent = Category)

and some sample data:

Product:

ID   Name

1    Chair
2    Table

Meta

ID   Object  Key     Value

1      1     Color   "Red"
2      1     Size    "Large"
3      2     Color   "Blue"
4      2     Size    "Small"

Category

ID   Name

1    Indoor
2    Outdoor

Relation

ID   ChildID   ParentID

1       1         1
2       1         2
3       2         1

Can we use Distinct and Group by to produce the following format (ProductDetail)

ID=1,
Name=Chair,
Parent=
{
  { ID=1, Name="Indoor" },
  { ID=2, Name="Outdoor" }
},
Properties { Color="Red", Size="Large" }

ID=2,
Name=Table,
Parent=
{
  { ID=1, Name="Indoor"}
},
Properties { Color = "Blue", Size = "Small" }

which we can get the “Color” value of the first item by using

ProductDetails[0].Properties.Color

Any helps would be appreciated!

  • 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-19T11:31:52+00:00Added an answer on May 19, 2026 at 11:31 am

    No, you can’t do this based on what you’ve said – because “Color” and “Size” are part of the data, rather than part of the model. They’re only known at execution time, so unless you use dynamic typing, you’re not going to be able to access it by Properties.Color.

    You could, however, use Properties["Color"] potentially:

    var query = from product in db.Products
                join meta in db.Meta 
                    on product.ID equals meta.Object 
                    into properties
                select new { Product = product,
                             Properties = properties.ToDictionary(m => m.Key,
                                                                  m => m.Value) };
    

    So for each product, you’ll have a dictionary of properties. That works logically, but you may need to tweak it to get it to work in the entity framework – I don’t know how well that supports ToDictionary.

    EDIT: Okay, I’ll leave the above up as the “ideal” solution, but if EF doesn’t support ToDictionary, you’d have to do that part in-process:

    var query = (from product in db.Products
                 join meta in db.Meta 
                     on product.ID equals meta.Object 
                     into properties
                 select new { product, properties })
                .AsEnumerable()
                .Select(p => new {
                        Product = p.product,
                        Properties = p.properties.ToDictionary(m => m.Key,
                                                               m => m.Value) });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have the following classes: class Votable(models.Model): name = ... class Vote(models.Model):
Let's say, I have the following two classes: class A(object): def __init__(self, i): self.i
Let's say I have the following code: class MyClass(object): def __init__(self, param): self.param =
Let's say I have the following table: Value Time 0 15/06/2012 8:03:43 PM 1
Let's say I have the following classes set up: class Foo: def __init__(self, frob,
I have following classes. In instance of BE (let's say objBE) i want to
Let's say I have the following classes : public class MyProductCode { private String
Let's say I have the following two classes: package example.model; public class Model {
Let's say I have following ORM classes (fields removed to simplify): class Animal(models.Model): say
Using Mongoid, let's say I have the following classes: class Map include Mongoid::Document embeds_many

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.