我正在尝试为Index视图编写一个自动脚手架.我希望能够传递模型或视图模型的集合(例如,IEnumerable< Myviewmodel>)并返回一个
HTML表,该表使用标题属性(th元素)和
Html.Display(propertyName)的DisplayName属性)对于细胞(td元素).每行应对应于集合中的一个项目.
当我只显示单个记录时,如在详细信息视图中,我使用ViewData.ModelMetadata.Properties来获取给定模型的属性列表.但是当我传递给视图的模型是模型或视图模型对象的集合而不是模型或视图模型本身时会发生什么?
解决方法
一个简单的扩展方法可以完成这项工作:
public static class MyExtensions { public static ModelMetadata GetMetadata<TModel>(this TModel model) { return ModelMetadataProviders.Current.GetMetadataForType(null,typeof(TModel)); } }
在你看来:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<System.Collections.Generic.IEnumerable<Myviewmodel>>" %> <%-- Get Metadata for the first item in the model collection --%> <%= Html.Encode(Model.ElementAt(0).GetMetadata().ModelType) %>