我无法将SQL Server上的DateTime2列映射到OS x上的Mono上的DateTime列
created_at在sql端定义为DateTime2非空列,我在c#端定义为public DateTime created_at { get; set; }
。
我得到了这个异常:
InvalidOperationException: The 'created_at' property on 'revision' could not be set to a 'System.String' value. You must set this property to a non-null value of type 'System.DateTime'.
但是,当我在Windows上运行我的项目时,相同的定义也有效。
Please Try This
public DateTime created_at { get; set; }