MongoDbContext 1.0.1
See the version list below for details.
dotnet add package MongoDbContext --version 1.0.1
NuGet\Install-Package MongoDbContext -Version 1.0.1
<PackageReference Include="MongoDbContext" Version="1.0.1" />
paket add MongoDbContext --version 1.0.1
#r "nuget: MongoDbContext, 1.0.1"
// Install MongoDbContext as a Cake Addin #addin nuget:?package=MongoDbContext&version=1.0.1 // Install MongoDbContext as a Cake Tool #tool nuget:?package=MongoDbContext&version=1.0.1
MongoDbContext
MongoDbContext enables .NET developers to work with a MongoDb database using .NET objects.
How it works?
Install-Package MongoDbContext
1 - Creating documents.
public class Tweet : Document
{
public string Message { get; set; }
}
public class Movie : Document
{
public string Title { get; set; }
public string Category { get; set; }
public int Minutes { get; set; }
}
1 - Inherits from the ElasticSearchContext class.
public class SocialContext : MongoDbContext
{
public SocialContext(MongoDbOptions<SocialContext> options) : base(options)
{
}
public override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Document<Tweet>()
.WithDatabase("socialDb")
.WithCollection("tweets");
modelBuilder.Document<Movie>()
.WithDatabase("socialDb")
.WithCollection("movies");
}
public MongoCollection<Tweet> Tweets { get; set; }
public MongoCollection<Movie> Movies { get; set; }
}
2 - Dependency Injection
var services = new ServiceCollection();
services.AddMongoDbContext<SocialContext>();
3 - Configuring
SocialContext has a TRANSIENT lifestyle and your configuration has a SINGLETON lifestyle, both by default is SCOPED lifestyle.
You can choose by connection string or a custom configuration from MongoClientSettings.
Azure Cosmos Db configuration is enabled in 1.0.1.
var services = new ServiceCollection();
services.AddMongoDbContext<TContext>(options =>
{
//options.ConnectionString("mongodb://localhost:27017");
options.ConnectionString("mongodb://<serviceName>:<PRIMARYPASSWORD>@<serviceName>.documents.azure.com:10255/?ssl=true&replicaSet=globaldb");
}, ServiceLifetime.Transient, ServiceLifetime.Singleton);
NOTE:
- Azure Cosmos Db only for CRUD Operations.
- Map/Reduce is not supported in Azure Cosmos Db.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Inflector.NetStandard (>= 1.2.2)
- Microsoft.Extensions.DependencyInjection (>= 2.1.1)
- MongoDB.Bson (>= 2.6.0)
- MongoDB.Driver (>= 2.6.0)
- Newtonsoft.Json (>= 11.0.2)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on MongoDbContext:
Package | Downloads |
---|---|
MongoDbContext.Extensions.DependencyInjection
MongoDbContext enables .NET developers to work with a MongoDb database using .NET objects. |
|
MongoDbContext.Autofac
MongoDbContext enables .NET developers to work with a MongoDb database using .NET objects. |
|
MongoDbContext.CastleWindsor
MongoDbContext enables .NET developers to work with a MongoDb database using .NET objects. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.6.1 | 28,325 | 11/28/2019 |
4.0.6 | 2,150 | 7/28/2019 |
4.0.5.4 | 1,642 | 7/13/2019 |
4.0.5.3-beta | 540 | 7/2/2019 |
4.0.5.2-beta | 516 | 6/30/2019 |
4.0.5.1-beta | 514 | 6/30/2019 |
4.0.5-beta | 507 | 6/30/2019 |
4.0.4 | 1,222 | 6/8/2019 |
4.0.3 | 930 | 1/19/2019 |
4.0.0 | 1,639 | 12/25/2018 |
3.0.3 | 849 | 12/23/2018 |
3.0.2 | 946 | 9/9/2018 |
2.1.0 | 988 | 7/22/2018 |
2.0.0 | 1,073 | 7/19/2018 |
1.0.1 | 1,064 | 7/2/2018 |
1.0.0 | 1,048 | 7/1/2018 |