Skip to Main Content

MongoByte MongoDB Logo

Welcome to the new MongoDB Feedback Portal!

{Improvement: "Your idea"}
We’ve upgraded our system to better capture and act on your feedback.
Your feedback is meaningful and helps us build better products.

ADD NEW FEEDBACK

Drivers (ie: Node.js, Java, .NET)

Showing 69

Support TagWithCallSite and TagWith with EF Core Provider

It'd be good to support TagWithCallSite and TagWith so it's easier to figure out where the queries came from. The "tag" could be put in the query option comments so that it can be used when profiling and with otel integrations.
Guest over 1 year ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

Make the Go driver interface based so that it can be easily mocked for unitTests.

Provide interfaces for driver classes that can be used to mock the database for unit tests. Along the lines of what AWS does for its services: https://aws.amazon.com/blogs/developer/mocking-out-then-aws-sdk-for-go-for-unit-testing/
Guest over 2 years ago in Drivers (ie: Node.js, Java, .NET) 0 Will Not Implement

Add support for new pagination feature

Please add support for new pagination features explained here: https://www.mongodb.com/docs/atlas/atlas-search/paginate-results/
Guest over 1 year ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

Asynchronous variant of IIdGenerator

We have use cases where IDs assigned to documents are generated by an external service. Communication with the external service is asynchronous. We have created custom IIdGenerator implementations for this purpose, and they work, but unfortunately...
Guest about 3 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

BsonIgnoreIfEmpty - Property Attribute

Like BsonIgnoreIfDefault and BsonIgnoreIfNull, we can add BsonIgnoreIfEmpty. It can be added on IEnumerables (which we basically know they cannot have infinite values since it is inserted to db after all..) and if the IEnumerable is empty, it wont...
Guest almost 5 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

Better handling of circular reference serialization in Java

Given 2 generic POJOs that include references to each other such as: package com.example; public class Course { Student _student; public void setStudent(Student student) { _student = student; } public Student getStudent() { return _stu...
Guest over 3 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

Add Date support to pymongoarrow

pymongoarrow already supports datetime but that is not ideal to store partitioned values. I assume we would ideally store dates as BSON Date in MongoDB and then get back a Parquet Date. Y'all already support many data types (https://github.com/mon...
Guest almost 2 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

F# Driver

We would like to use MongoDB with F#. There was a brief of prototype solution archived in github but was abandoned. The project I am talking about is https://github.com/mongodb-labs/mongo-fsharp-driver-prototype/pulse This is an official request ...
Guest over 5 years ago in Drivers (ie: Node.js, Java, .NET) 1 Submitted

Create / Update LabVIEW Driver

There seem to not exist any official LabVIEW Drivers / VIs for MongoDB. There do exist some LabVIEW VIs for MongoDB that work very well based on a C# DLL: https://github.com/RBXSystems/mongo-labview-driver/tree/master/CSharp/bin. However those o...
Guest over 5 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

.NET 6.0 support for Entity Framework driver

The pre-release version of the EF support in C# driver is only published for .NET 7.0 while the LTS version of .NET is 6.0 and many vendors use (and will use it) for a long time. The roadmap from https://github.com/mongodb/mongo-efcore-provider#li...
Guest almost 2 years ago in Drivers (ie: Node.js, Java, .NET) 1 Will Not Implement