之前我有一个名为ApplicationConfiguration的表,它只有[Key],[Value]列来存储一些配置数据。使用SQL查询立即查询。
现在我打算利用Entity Framework(EF)Code First方法来查询这个表。该表的特点是该表在其生命周期中只有固定数量的行。只能更新“值”列。
因此,根据代码第一种方法,我们必须首先编写POCO类,其属性将映射到基础表中的列。但是,我希望有一个词典<>结构表示这些配置KV对。我担心的是,EF是否能够针对特定对的值的任何更新触发更新查询。
此外,由于我正在使用Code First方法,因此在首次执行应用程序时动态创建表本身之后,我会想要添加一些种子数据(即固定行数及其初始内容)。 / p>
如果词典<>不能使用,请建议一些替代方案。提前谢谢。
答案 0 :(得分:2)
以这种方式编码:
public class ApplicationConfiguration
{
public int Id { get; set; }
public string Key { get; set; }
public int Value { get; set; } // should be string, but I'm lazy
}
class Context : DbContext
{
internal class ContextInitializer : DropCreateDatabaseIfModelChanges<Context>
{
protected override void Seed(Context context)
{
var defaults = new List<ApplicationConfiguration>
{
new ApplicationConfiguration {Key = "Top", Value = 5},
new ApplicationConfiguration {Key = "Bottom", Value = 7},
new ApplicationConfiguration {Key = "Left", Value = 1},
new ApplicationConfiguration {Key = "Right", Value = 3}
};
// foreach (var c in defaults)
// context.ConfigurationMap.Add(c.Key, c); // by design, no IReadOnlyDictionary.Add
foreach (var c in defaults)
context.ApplicationConfigurations.Add(c);
base.Seed(context);
}
}
public Context()
{
Database.SetInitializer(new ContextInitializer());
}
private IDbSet<ApplicationConfiguration> ApplicationConfigurations
{
get { return Set<ApplicationConfiguration>(); }
}
public IReadOnlyDictionary<string, ApplicationConfiguration> ConfigurationMap
{
get { return ApplicationConfigurations.ToDictionary(kvp => kvp.Key, kvp => kvp); }
}
}
以这种方式使用:
using (var context = new Context())
{
ReadConfigurationOnly(context.ConfigurationMap);
}
using (var context = new Context())
{
ModifyConfiguration(context.ConfigurationMap);
context.SaveChanges();
}
static void ReadConfigurationOnly(IReadOnlyDictionary<string, ApplicationConfiguration> configuration)
{
foreach (var k in configuration.Keys)
Console.WriteLine("{0} = {1}", k, configuration[k].Value);
}
static void ModifyConfiguration(IReadOnlyDictionary<string, ApplicationConfiguration> configuration)
{
foreach (var k in configuration.Keys)
configuration[k].Value++; // this is why I was lazy, using an int for a string
}
所以,我用这种方式编写了 - 使用int
Value
属性而不是string
- 这样我就可以一遍又一遍地运行“使用过这种方式”代码,并且每次都可以看到数据库更新,而无需用其他方式以有趣的方式更改Value
。
使用IReadOnlyDictionary<string, ApplicatonConfiguration>
代替IReadOnlyDictionary<string, string>
并不是我们真正喜欢的方式,但这不仅仅是因为我们可以轻松修改我们的方式来弥补这一点。集合值,而不是采用笨拙的Set
方法,将字典作为输入。当然,缺点是我们不得不接受configuration[key].Value = "new value"
而不是configuration[key] = "new value"
,但正如我所说 - 我觉得这是值得的。
修改强>
荡!我专门写了这个代码来回答这个问题,但是我觉得我非常喜欢它,我会把它添加到我的技巧中...当我的公司从本地数据库转到Azure时,这非常适合云中的实例,当前的app.config必须进入数据库。
现在我需要的是ContextInitializer
将System.Configuration.ConfigurationManager
作为ctor参数,以便从现有app.config中播种新数据库......
答案 1 :(得分:1)
我不认为你可以将表直接映射到字典;您可能需要编写自己的包装器来填充表中的字典并将其更新回DB。实体是给定表的一行......像这样(未经测试):
public Dictionary<string, string> GetDictionary()
{
Dictionary<string, string> dic = new Dictionary<string, string>();
using (var db = new Context())
{
var configs = db.ApplicationConfiguration.Select();
foreach (var entry in configs)
{
dic.Add(config.Key, config.Value);
}
}
return dic;
}
public void SaveConfig(Dictionary<string, string> dic)
{
using (var db = new Context())
{
foreach (KeyValuePair kvp in dic)
{
if (!db.ApplicationConfiguration.First(a => a.Key == kvp.Key).Value == kvp.Value)
{
var ac = new ApplicationConfiguration();
ac.Key = kvp.Key;
ac.Value = kvp.Value;
db.Entry(ac).State = EntityState.Modified;
}
}
db.SaveChanges();
}
}
对于第二个问题,您希望使用Seed()
方法将初始值添加到数据库中。有关示例实现,请参阅here。