James Turner

Results 73 issues of James Turner

Currently MongoDB doesn't support partial queries on text indexes. As a way to alleviate it, I saw [a comment on MongoDB's Jira](https://jira.mongodb.org/browse/SERVER-15090?focusedCommentId=2211627&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-2211627) about a way to work around it by...

enhancement
affects-indexing
affects-querying
affects-writing
moderate-change

This is primarily for types that the user has a high chance of directly interacting with. When a concrete type has an interface, the comments should be on the interface....

enhancement
documentation

Cover a basic but likely common scenario: - Creating a context that extends MongoDbContext - A few MongoDbSet properties for different entities - Entities to have appropriate attributes and indexes...

documentation

Add support for GridFS through a new type of `DbSet` specifically for files

enhancement
help wanted
affects-querying
affects-writing
affects-serialization
major-change

While #54 talks about replacing the entire driver, this is a more focused change on replacing the entire LINQ pipeline of the driver with a custom implementation. The main benefit...

enhancement
affects-querying
major-change

Currently with a context (due to the heavy-ness of MongoDbSet), there is no way to configure things like disable tracking on an entity collection. Even looking at this from the...

enhancement

See example: https://blog.jeremylikness.com/blog/build-a-blazor-webassembly-line-of-business-app/#extend-identity-to-audit-user-account-management Supporting something like this would be trying to supply a way to access changes more generically and centrally.

enhancement

With the recent addition of text indexes and queries in #82 , there was one part I missed that I did not realise - text queries actually have a text...

enhancement
affects-querying
moderate-change

Simplifies how leftover data is processed. In some basic testing, it seems to perform better for small text (likely due to less code size needing to load up), about the...

enhancement

Within [`SocketFrameHandler`](https://github.com/rabbitmq/rabbitmq-dotnet-client/blob/cc47745fa9cbd2ed363ad01b2313f5993b26e3f8/projects/RabbitMQ.Client/client/impl/SocketFrameHandler.cs), it specifically uses a write timeout and sets this on both the `NetworkStream`'s `WriteTimeout` property (which internally sets it on the socket) as well as the frame handler's...