mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
874 B
34 lines
874 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Mongo2Go;
|
|
using Volo.Abp;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace Volo.Blogging.MongoDB
|
|
{
|
|
[DependsOn(
|
|
typeof(BloggingTestBaseModule),
|
|
typeof(BloggingMongoDbModule)
|
|
)]
|
|
public class BloggingMongoDBTestModule : AbpModule
|
|
{
|
|
private MongoDbRunner _mongoDbRunner;
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
_mongoDbRunner = MongoDbRunner.Start();
|
|
|
|
Configure<DbConnectionOptions>(options =>
|
|
{
|
|
options.ConnectionStrings.Default = _mongoDbRunner.ConnectionString;
|
|
});
|
|
}
|
|
|
|
public override void OnApplicationShutdown(ApplicationShutdownContext context)
|
|
{
|
|
_mongoDbRunner.Dispose();
|
|
}
|
|
}
|
|
}
|
|
|