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