This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Diagnostics; | |
| namespace Shouldly; | |
| [DebuggerStepThrough] | |
| [ShouldlyMethods] | |
| public static class ShouldBeAsyncExtensions | |
| { | |
| public static async Task ShouldBeNull<T>( this Task<T?> actualAsync, string? customMessage = null ) | |
| where T : class |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.Extensions.Logging.Abstractions; | |
| using Volo.Abp; | |
| using Volo.Abp.Modularity; | |
| using Volo.Abp.Modularity.PlugIns; | |
| public class DynamicModuleLoader : ModuleLoader | |
| { | |
| protected override void FillModules( List<AbpModuleDescriptor> modules, | |
| IServiceCollection services, | |
| Type startupModuleType, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using EFCore.BulkExtensions; | |
| using Microsoft.EntityFrameworkCore; | |
| using Volo.Abp.DependencyInjection; | |
| using Volo.Abp.Domain.Entities; | |
| using Volo.Abp.Domain.Entities.Events; | |
| using Volo.Abp.Domain.Repositories.EntityFrameworkCore; |