MongoRepository icon indicating copy to clipboard operation
MongoRepository copied to clipboard

Repository abstraction layer on top of Official MongoDB C# driver

Results 16 MongoRepository issues
Sort by recently updated
recently updated
newest added

Hi Guys, I would like to have my application abstracted from data store layer. But in order to use Generic Repository I have to inherit my entities from Entity class....

enhancement
help wanted

Hey bud, I've been using MongoRepository for a long time and I LOVE it! It simplifies coding for MongoDB in .NET significantly. However, there is a fundamental problem with it...

enhancement
help wanted

Would be possible to separate the Mongo-independent interface declarations (IRepository, IEntity) into an own assembly (something like Repository.Core) ? This would allow to use the MongoRepository in client-server scenarios, where...

enhancement
help wanted

The underlying driver is now at a 2.0 release which uses a fully async stack. We'll have to update the repository for this release. https://github.com/mongodb/mongo-csharp-driver/releases

help wanted

I'm using a MongoDB instance behind self-signed SSL, which means that to use this project I need to include sslVerifyCertificate=false on my connection string... that's bad. 😢 Do you think...

enhancement
help wanted

If I want to store document references instead of embedded documents, how would I best achieve that in the repo? For example, I want to have users that can share...

question