我在以下代码中提供了位于 model.StartDate 的完整日期时间:
@Html.DisplayFor(model => model.StartDate.ToString("hh:mm tt"),
CultureInfo.CreateSpecificCulture("hu-HU"));
我的目标是获取完整的 DateTime
8/30/2012 11:33:48 AM
并且只显示
11:33:48 AM
但是,我收到以下错误:
Templates can be used only with field access, property access,
single-dimension array index, or single-parameter custom indexer expressions.
为什么会发生此错误?
注意:我参考了这个文档来为我的 DateTime 格式化我的 .ToString:http: //msdn.microsoft.com/en-us/library/8kb3ddd4.aspx