ampere
ampere
CC#
Created by ampere on 11/23/2022 in #help
❔ Any good open source .NET centralized logging solutions?
oh nice I didn't know the concept of sinks
6 replies
CC#
Created by ampere on 10/21/2022 in #help
.NET MongoDB Driver - Unsupported Filter Contains
Solved, I had to modify the DeleteMany method implementation to receive a FilterDefinition<TDocument> instead of an Expression<Func<TDocument, bool>>, so I could formulate and pass the following filter:
var practicesToDelete = request.Questions.Select(x => x.Practices).Distinct();
var filter = Builders<Question>.Filter.In(x => x.Practice, practicesToDelete);
var practicesToDelete = request.Questions.Select(x => x.Practices).Distinct();
var filter = Builders<Question>.Filter.In(x => x.Practice, practicesToDelete);
2 replies