James Turner
James Turner
> I would like to see include/exclude urls using regular expressions. This will allow handling almost everything. Not that I am committing one way or another but would you want...
Either in addition to this or alternatively to it, having support for `EventSource`/`EventListener` could be useful.
This is still conceptually interesting but deviates from the main goal of the library too much in my opinion, making it harder to maintain the library in the future.
Hey @ahmednfwela - currently MongoFramework still does depend on the MongoDB Driver in a number of significant ways. That said, a number of the issues I've raised above still remain...
Yeah, extension conflicts from importing both `MongoFramework.Linq` and the driver's equivalent in the same file is definitely going to have problems. There isn't a lot I can really do about...
Oh, I should probably state, even if I wasn't going to replace the driver any more, those LINQ extensions are probably one of the areas that would remain regardless. To...
So the main thing with this issue as far as I could tell was that the schema.org JSON-LD file we parse to generate the library didn't have `jobTitle` correctly in...
Hey @maraerben - Currently #182 is only the most surface level changes needed, I haven't yet got around to any further development for it. My last comment on the PR...
It sounds like the existing data in the database isn't actually a `string` but a `ObjectId`. Try switching your entities type to `ObjectId` (its in the `MongoDB.Bson` namespace).
Sorry, I mean change `public string Id { get; set; }` to `public ObjectId Id { get; set; }`