I try to find entity by its id in liteDb. But the wrong entity returns as a result (with another id). It's reproduced only on one entity for one client (other clients works good).
I use LiteDB 4.1.2.0 in my program, also I tried to find the entity in LiteDBViewer (4.1.0.0).
var id = Guid.Parse("9fe943d3-97d4-4301-8279-eca89b4209ee");
var order = dbOrders.FindById(id);
//dbOrders is LiteCollection<Order>
I expect that liteDb will return entity with my id (9fe943d3-97d4-4301-8279-eca89b4209ee), but the actual output entity with id = 2aba5886-ca30-4d67-9cf8-558441ef5eb6.
The result of liteDbViewer: https://i.ibb.co/WntgmZK/2019-08-16-1230.png