我会尽力解释我的情况。我的数据库中有以下表格:
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
Dictionary
DataTable
对象我来了一些解决方案。
现在......这工作我得到数据读取它们,我可以显示它们。
但是我仍然需要比我更聪明的人的建议,我是否做得很好,或者我应该更好地处理这个问题,或者我做了一些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);
}
}