在不使用“UIHint”的情况下,如何为某些类型的数据创建 .cshtml。
例子
这些已经在工作了!
[DataType(DataType.Url)]
public string Link { get; set; }
将会被使用
Url.cshtml
[DataType(DataType.MultilineText)]
public string Descrition { get; set; }
将会被使用
MultilineText.cshtml
这些,我怀疑如何
public IEnumerable<SelectListItem> TypesList { get; set; }
将会被使用
???????????.cshtml
public DateTime? DateUpdated { get; set; }
将会被使用
???????????.cshtml
public int? Order { get; set; }
将会被使用
???????????.cshtml
问题
简而言之,不想放入我的 ViewModel 属性,就像“Url”和“Multiline”一样
.cshtml
将用于的文件名应该是什么int?
,IEnumerable<xx>
或IEnumerable<string>
Remembering that you can not create files with "<", ">" or "?"