Exemplo n.º 1
0
        public static async Task SeedProductCategoriesAsync(ProductCategoryContext dbContext,
                                                            ILoggerFactory loggerFactory, int?retry = 0)
        {
            int retryForAvailability = retry.Value;

            try
            {
                if (!dbContext.Categories.Any())
                {
                    await dbContext.Categories.AddRangeAsync(SampleProductCategoryData.Instance.Categories);

                    await dbContext.SaveChangesAsync();
                }
            }
            catch (Exception ex)
            {
                if (retryForAvailability < 3)
                {
                    retryForAvailability++;
                    var log = loggerFactory.CreateLogger <ProductCategoryContextSeed>();
                    log.LogError(ex.Message);
                    await SeedProductCategoriesAsync(dbContext, loggerFactory, retryForAvailability);
                }
            }
        }
 public EfRepository(ProductCategoryContext dbContext)
 {
     _dbContext = dbContext;
 }
 public ProductRepository(ProductCategoryContext dbContext) : base(dbContext)
 {
 }
Exemplo n.º 4
0
 public ProductCategoryContextSeed(ProductCategoryContext dbContext)
 {
     _dbContext = dbContext;
 }