6

我会尽力解释我的情况。我的数据库中有以下表格:

Products{ProductId, CategoryId ...}
Categories{CategoryId ...}
CategoryProperties{CategoryPropertyId, CategoryId, Name ...}
PropertyValues{ProductId, CategoryPropertyId, Value ...}

因此,目标是列出属于某个类别的产品,每个类别可以有“n”个属性,其值在“PropertyValues”表中。我有一个基于“categoryId”返回数据的查询,因此我总是可以从数据库中获得不同的结果:

对于 CPU 类别:

intel i7 | CPU | Model | Socket | L1 Cash | L2 Cahs | etc.

对于 HDD 类别:

samsung F3 | HDD | Model | Speed | GB | etc.

因此,根据我查询的类别,我总是可以获得不同的列号和名称。对于数据库访问,我使用简单的 ADO.NET 调用来返回结果的存储过程。但是因为查询结果本质上是动态的,所以我不知道什么是读取这些数据的好方法。

我制作了一个Product实体,但我很困惑如何真正制作它:( 我认为我可以制作一个Product实体并制作其他继承 Product的实体,如Cpu, Hdd, Camera, PcCase, GraphicCard,等MobilePhone,但我认为这很愚蠢,因为我可以用域中 有200 多个实体。 在这种情况下你会怎么做? 如何阅读以及将这个动态属性放在哪里? 更新 - 一些解决方案 好吧,基于@millimoose的建议和@Tim Schmelter使用的想法Gps








DictionaryDataTable对象我来了一些解决方案。
现在......这工作我得到数据读取它们,我可以显示它们。
但是我仍然需要比我更聪明的人的建议,我是否做得很好,或者我应该更好地处理这个问题,或者我做了一些spageti 代码。所以在这里我做了什么:

public class Product
    {
        public Product()
        {
            this.DynamicProperties = new List<Dictionary<string, string>>();
        }

        public List<Dictionary<string, string>> DynamicProperties { get; set; }

    }
...
List<Product> products = new List<Product>();
...
using (SqlDataAdapter a = new SqlDataAdapter(cmd))
                {
                    DataTable t = new DataTable();
                    a.Fill(t);

                    Product p = null;

                    foreach (DataRow row in t.Rows)
                    {
                        p = new Product();
                        foreach (DataColumn col in t.Columns)
                        {
                            string property = col.ColumnName.ToString();
                            string propertyValue = row[col.ColumnName].ToString();

                            Dictionary<string, string> dictionary = new Dictionary<string, string>();

                            dictionary.Add(property, propertyValue);

                            p.DynamicProperties.Add(dictionary);
                        }

                        products.Add(p);
                    }
                }
4

2 回答 2

2

你原来的方法

public class Product
{
    public List<Dictionary<string, string>> DynamicProperties { get; set; }
}

相当不错。不过,我会使用自定义集合,名称更好,因此意图更清晰。


您还可以利用 C# 4.0 的更酷dynamic的功能,但我不确定它对您的情况有什么好处。你可以做类似的事情,

public class Product
{
    public List<dynamic> DynamicProperties { get; set; }
}

...

conn.Open();
using (var reader = cmd.ExecuteReader())
{
    var p = new Products();
    p.DynamicProperties = reader.AsDyamic().ToList();

    //or

    foreach (var item in reader.AsDynamic())
        yield return item;
}

// carry this extension method around
public static IEnumerable<dynamic> AsDynamic(this IDataReader reader)
{
    var names = Enumerable.Range(0, reader.FieldCount).Select(reader.GetName).ToList();
    foreach (IDataRecord record in reader as IEnumerable)
    {
        var expando = new ExpandoObject() as IDictionary<string, object>;
        foreach (var name in names)
            expando[name] = record[name];

        yield return expando;
    }
}

有点相关的问题:如何将数据阅读器转换为动态查询结果

于 2015-08-01T11:23:23.570 回答
1

你有一个产品,一堆类别,每个类别都有一堆属性。

class Product
{
    public int Id { get; set; }
    public Category Category { get; set; }
    public List<ProductProperty> Properties { get; set; }
}

class Category
{
  public int Id { get; set; }
  public string Name { get; set; }
}

class ProductProperty
{
   public  int Id { get; set; }
   public  string Name { get; set; }
   public string Value { get; set; }
}

您可以将产品属性存储在列表/字典中

然后您只需向产品添加属性

Properties.Add(new ProductionProperty() { Name="intel i7"});

或者如果它的名称/值

Properties.Add(new ProductionProperty() { Name="Speed", Value="150MB/s"});
于 2013-03-04T21:47:50.950 回答