Unable to determine the serialization information for the expression: (PlaceManager pm) => pm.FreePlaces.get_Item(index)
データベース (Mongo DB) から値を削除しようとすると、エラーが発生します。
これが私のコードです:
var result = _placeManager.Update(Query.EQ("_id", 0),
Update<PlaceManager>.Pull(pm => pm.FreePlaces[index], placeId));
そして、ここにPlaceManager
クラスがあります:
public class PlaceManager
{
[BsonId]
public int Id { get; set; }
public int CurrentSize { get; set; }
public Dictionary<int, List<int>> FreePlaces { get; set; }
}