问题描述
- MongoDB C# 驱动中结构类型无法反序列化
-
public class User { public Guid _id { get; set; } public Log L { get; set; } } public struct Log { [MongoDB.Bson.Serialization.Attributes.BsonDateTimeOptions(Kind=DateTimeKind.Local)] public DateTime CreateDateTime { get; set; } }
上述这样的结构在MongoDB C#驱动中无法被反序列化,请教如何结果?
解决方案
public Guid _id { get; set; }
关键在这里
用string类型看看
时间: 2024-11-03 04:12:20