在我的MVC5应用程序中,我有一个枚举类,如下所示,通过这种方法,我可以传递枚举值,即US,UK而不是美国“从Controller到View。如何通过以下方式传递和显示枚举描述方法?我尝试了很多不同的解决方法,如C# String enums等,但没有一个解决了我的问题。另一方面,我不想使用密封类,对我来说,更好的解决方案是枚举类如下图所示:
枚举:
public enum Country
{
[Description("United States")]
US = 1,
[Description("United Kingdom")]
UK = 2,
[Description("New Zealand")]
NewZealand = 3,
[Description("France")]
France = 4,
[Description("Germany")]
Germany = 5
}
的型号:
public class VisitorViewModel
{
[Key]
public int VisitorID { get; set; }
public Country Country { get ; set; }
//code omitted for brevity
}
的控制器:
public JsonResult Visitor_Read([DataSourceRequest] DataSourceRequest request)
{
var result = db.Visitors.Select(m => new VisitorViewModel
{
VisitorID = m.VisitorID,
Country = m.Country
//code omitted for brevity
})
var jsonResult = Json(result, JsonRequestBehavior.AllowGet);
jsonResult.MaxJsonLength = int.MaxValue;
return jsonResult;
}
查看:
$(document).ready(function () {
var grid = $("#visitorGrid").kendoGrid({
dataSource: {
type: "json",
transport: {
read: {
url: "/Visitor/Visitor_Read",
dataType: "json",
cache: false
}
},
schema: {
model: {
fields: {
VisitorID: { type: 'number' },
Country : { type: 'string' }
}
}
}
},
columns:
[
{ field: "VisitorID", title: "Id" },
{ field: "Country ", title: "Country" },
]
}).data("kendoGrid");
});
答案 0 :(得分:4)
您必须为自定义属性设置NotMapped
属性:
using System.ComponentModel.DataAnnotations.Schema;
public class VisitorViewModel
{
[Key]
public int VisitorID { get; set; }
public Country Country { get; set; }
[NotMapped]
public string CountryName
{
get { return Country.GetDescription(); }
}
}
和GetDescription()
是下一个扩展方法:
public static string GetDescription(this Enum e)
{
var field = e.ToString();
var attribute = e.GetType().GetField(field).GetCustomAttributes(typeof(DescriptionAttribute), false).FirstOrDefault();
return attribute != null ? ((DescriptionAttribute)attribute).Description : field;
}
答案 1 :(得分:1)
您必须创建将返回描述属性的方法。它可以是一些帮助方法,扩展或任何你想要的。
例如:
public class VisitorViewModel
{
[Key]
public int VisitorID { get; set; }
public Country Country { get ; set; }
//code omitted for brevity
public string GetDescription()
{
var type = typeof(Country);
var memInfo = type.GetMember(this.Country.ToString());
var attributes = memInfo[0].GetCustomAttributes(typeof(DescriptionAttribute), false);
return ((DescriptionAttribute)attributes[0]).Description;
}
}
所以你可以像
一样调用它var result = db.Visitors.Select(m => new VisitorViewModel
{
VisitorID = m.VisitorID,
Country = m.GetDescription()
//code omitted for brevity
})
或者如果它对你更好,创建一个将被类似调用的辅助方法,但它将是静态的......
public class SomeHelperClass
{
public static string GetDescription(VisitorViewModel model)
{
var type = typeof(Country);
var memInfo = type.GetMember(model.Country.ToString());
var attributes = memInfo[0].GetCustomAttributes(typeof(DescriptionAttribute), false);
return ((DescriptionAttribute)attributes[0]).Description;
}
}
所以电话会看起来像
SomeHelperClass.GetDescription(model);
EDIT 我有一个想法,也许它不是你想要的,也许它可以帮助你。 如果添加具有国家/地区名称的属性,您也可以使用此方法:
public class VisitorViewModel
{
[Key]
public int VisitorID { get; set; }
public string CountryName { get; set; }
private Country _country;
public Country Country
{
get { return this._country; }
set
{
this._country = value;
this.CountryName = GetDescription(value);
}
}
//code omitted for brevity
private string GetDescription(Country country)
{
var type = typeof(Country);
var memInfo = type.GetMember(country.ToString());
var attributes = memInfo[0].GetCustomAttributes(typeof(DescriptionAttribute), false);
return ((DescriptionAttribute)attributes[0]).Description;
}
}
所以,如果你要像你一样填写你的模型
var result = db.Visitors.Select(m => new VisitorViewModel
{
VisitorID = m.VisitorID,
Country = m.Country
//code omitted for brevity
})
您将自动填写您可以在kendo网格中使用的CountryName属性。
{ field: "CountryName", title: "Country" },