8 references to CatalogItem
CatalogDb (8)
CatalogDbInitializer.cs (1)
61static List<CatalogItem> GetPreconfiguredItems(DbSet<CatalogBrand> catalogBrands, DbSet<CatalogType> catalogTypes)
Model.cs (7)
6public record Catalog(int FirstId, int NextId, bool IsLastPage, IEnumerable<CatalogItem> Data); 12private static readonly Func<CatalogDbContext, int?, int?, int?, int, IAsyncEnumerable<CatalogItem>> s_getCatalogItemsQuery = 21public Task<List<CatalogItem>> GetCatalogItemsCompiledAsync(int? catalogBrandId, int? before, int? after, int pageSize) 26public DbSet<CatalogItem> CatalogItems => Set<CatalogItem>(); 34DefineCatalogItem(builder.Entity<CatalogItem>()); 54private static void DefineCatalogItem(EntityTypeBuilder<CatalogItem> builder)