我正在使用以下代码将对象添加到 ASP.NET MVC 3 应用程序中的列表中,但该对象的属性之一给我带来了困难。
ls.Add(new UserRoleModel { UserRoleId = 1, UserName = "Paul", InsertDate = new DateTime(05, 24, 2012),InsertProgram="sqlplus",InsertUser="sp22",Role="Implementation Co-corindator"});
这会构建,但是当我转到相关页面时,我会收到以下类型的异常:
Exception Details: System.ArgumentOutOfRangeException: Year, Month, and Day parameters describe an un-representable DateTime.
我曾尝试在本月删除 0 但我得到了同样的例外。