这是我的开发要求,
我的标签值存储在数据库中,我仍然想以声明的方式使用数据注释,这是为了让我的模型更具可读性。
这是我的方法,
我决定编写自定义 DisplayNameAttribute,其中我的模型提供的默认值将被从数据库中检索到的值覆盖。
这是模型中定义的属性,
[CustomDisplay(Name: "First Name")]
[CustomRequired(ErrorMessage: "{0} is required")]
public String FirstName { get; set; }
这是自定义显示名称属性类,
public class CustomDisplayAttribute : DisplayNameAttribute
{
private string _defaultName;
private string _displayName;
public CustomDisplayAttribute(string Name)
{
_defaultName = Name;
}
public override string DisplayName
{
get
{
if (String.IsNullOrEmpty(_displayName))
{
_displayName = DAO.RetrieveValue(**ModelName**, _defaultName);
}
return _displayName;
}
}
}
现在,您可以在上面的代码中看到,ModelName 是我需要的,但我没有!
在调试时,我深入研究了 ModelMetadataProviders.Current 并可以看到当前模型在运行中的可用性。但是,由于它是非公共静态成员的一部分,我无法通过我的代码访问它。
我编写了以下方法来通过反射检索模型名称,
private static string GetModelName()
{
var modelName = String.Empty;
FieldInfo info = typeof(CachedAssociatedMetadataProvider<CachedDataAnnotationsModelMetadata>)
.GetField("_typeIds", BindingFlags.NonPublic | BindingFlags.Static);
var types = (ConcurrentDictionary<Type, string>)info.GetValue(null);
modelName = types.FirstOrDefault().Key.Name;
return modelName;
}
但问题是,类型集合为我提供了所有模型的条目(用户至少访问过一次)。而且没有任何线索知道,目前正在行动!!