using Volo.Abp.Data; using Volo.Abp.MongoDB; namespace MyCompanyName.MyProjectName.Data; [ConnectionStringName("Default")] public class MyProjectNameDbContext : AbpMongoDbContext { /* Add mongo collections here. Example: * public IMongoCollection Questions => Collection(); */ protected override void CreateModel(IMongoModelBuilder modelBuilder) { base.CreateModel(modelBuilder); //builder.Entity(b => //{ // //... //}); } }