我有一个Warning
模型,我用它在 LiteDB 中插入警告。我希望能够插入相同的警告UserId
,就像在 SQLite 中一样,但是我收到了这个错误:
无法在唯一索引“_id”中插入重复键。
重复值为 '{"$numberLong":"483817273803538450"}'。
Warning
模型
[BsonId(false)]
public ulong UserId { get; set; }
public string Reason { get; set; }
public string Issuer { get; set; }
public int Status { get; set; }
我有什么办法可以UserId
多次插入相同的警告吗?