我的表结构如下:
Id DimX pScav pRail InjStd
1 Test1 Test2 Test3 Test4
2 Test1 Test2 Test3 Test5
我正在使用实体框架。用户可以在运行时动态添加此表的列。因此,无法使用此列数将我的模型生成为静态。
我的模型如下:
public partial class FullLoadData
{
public FullLoadData()
{
PerformanceType = new Dictionary<string, string>();
}
public int Id { get; set; }
public Dictionary<string, string> PerformanceType { get; set; }
}
在这里,我在字典中存储了所有列名及其值。
有人可以建议我如何将其值保存在数据库中吗?
其ID(即ID)的PK也已在其他类中用作外键。