MongoDbContext 1.0.0
See the version list below for details.
dotnet add package MongoDbContext --version 1.0.0
NuGet\Install-Package MongoDbContext -Version 1.0.0
<PackageReference Include="MongoDbContext" Version="1.0.0" />
paket add MongoDbContext --version 1.0.0
#r "nuget: MongoDbContext, 1.0.0"
// Install MongoDbContext as a Cake Addin #addin nuget:?package=MongoDbContext&version=1.0.0 // Install MongoDbContext as a Cake Tool #tool nuget:?package=MongoDbContext&version=1.0.0
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.
var services = new ServiceCollection();
services.AddMongoDbContext<SocialContext>(options =>
{
options.ConectionString("mongodb://localhost:27017");
}, ServiceLifetime.Transient, ServiceLifetime.Singleton);
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 | 27,842 | 11/28/2019 |
4.0.6 | 1,994 | 7/28/2019 |
4.0.5.4 | 1,621 | 7/13/2019 |
4.0.5.3-beta | 537 | 7/2/2019 |
4.0.5.2-beta | 508 | 6/30/2019 |
4.0.5.1-beta | 511 | 6/30/2019 |
4.0.5-beta | 504 | 6/30/2019 |
4.0.4 | 1,215 | 6/8/2019 |
4.0.3 | 921 | 1/19/2019 |
4.0.0 | 1,632 | 12/25/2018 |
3.0.3 | 842 | 12/23/2018 |
3.0.2 | 933 | 9/9/2018 |
2.1.0 | 979 | 7/22/2018 |
2.0.0 | 1,060 | 7/19/2018 |
1.0.1 | 1,055 | 7/2/2018 |
1.0.0 | 1,039 | 7/1/2018 |