MongDB/C# 杂项
1.MongDB的时间类型字段输出时为UTC的解决方法:
保存到数据库中的数据还是按UTC存的,读出来的就按标识值读
[BsonDateTimeOptions(Kind = DateTimeKind.Local)] public DateTime birthday { get; set; }
更新中...
1.MongDB的时间类型字段输出时为UTC的解决方法:
保存到数据库中的数据还是按UTC存的,读出来的就按标识值读
[BsonDateTimeOptions(Kind = DateTimeKind.Local)] public DateTime birthday { get; set; }
更新中...