MongoRepository
MongoRepository copied to clipboard
Repository abstraction layer on top of Official MongoDB C# driver
Added **GetLargeDataSet()** Method allowing diskuse to handle large datasets using Iqueryables.
The sample class I add earlier was ``` public class Author:Entity { public virtual string name { get; set; } public string dob { get; set; } } ``` and...
This PR allows you to use CosmosDB Mongo instance on azure which requires TLS1.2. Usage: ` MongoRepository.GlobalConfig.ConfigureSslSettings(x => x.EnabledSslProtocols = System.Security.Authentication.SslProtocols.Tls12); IRepository repository = new MongoRepository(ConfigurationManager.ConnectionStrings["MongoServerSettings"].ConnectionString, collectionName: "news-articles"); `
Build failed when building with .NET Platform 5.4 (ASP.NET Core)
V2 async
Added Async Methods supported in V2 driver
I am just curious if there are any plans to upgrade this project to support .NET Core and the latest MongoDB C# Driver? I noticed that @cphillips83 had created a...
https://github.com/MindMatrix/MongoRepository2 Putting this here in case someone may find it useful, the code was taken from sidecut's https://github.com/sidecut/MongoRepository/tree/v2.4.2 as the base rather than here since it seemed to be the...
Added Support for 2.0 async driver .I Will write test cases in the next commit. Any ideas for removing UpdateDefinition class usage in Update methods are welcome.
So I'm just trying this out for the first time and I noticed that types like Guid and DateTimeOffset were getting serialized as binary blobs and/or byte arrays. Is that...