我有这个返回Setting
类型的方法,我想检查第四列的值 -
当前代码:
public Setting TestSettings(Example _example, String type)
{
var results = _example.GetExample("Testing");
return results;
}
设定模型
string Description { get; set; }
Guid? Guid1 { get; set; }
Guid? Guid2 { get; set; }
string Key { get; set; }
string Value { get; set; }
获取示例
public Setting GetExample(string key)
{
using (var db = MyDataContext.StoredProcs)
{
return db.GetExample<Setting>(key, _curGuid1, _curGuid2, SettingExtensions.SettingFactory());
}
}
我想访问设置结果中的(键)来验证它是否等于类型。