19 references to Where
CatalogDb (3)
Model.cs (3)
16.Where(ci => catalogBrandId == null || ci.CatalogBrandId == catalogBrandId) 17.Where(ci => before == null || ci.Id <= before) 18.Where(ci => after == null || ci.Id >= after)
CatalogModel (3)
Model.cs (3)
19.Where(ci => catalogBrandId == null || ci.CatalogBrandId == catalogBrandId) 20.Where(ci => before == null || ci.Id <= before) 21.Where(ci => after == null || ci.Id >= after)
Microsoft.AspNetCore.Identity.EntityFrameworkCore (12)
RoleStore.cs (2)
341return await RoleClaims.Where(rc => rc.RoleId.Equals(role.Id)).Select(c => new Claim(c.ClaimType!, c.ClaimValue!)).ToListAsync(cancellationToken); 373var claims = await RoleClaims.Where(rc => rc.RoleId.Equals(role.Id) && rc.ClaimValue == claim.Value && rc.ClaimType == claim.Type).ToListAsync(cancellationToken);
UserOnlyStore.cs (5)
339return await UserClaims.Where(uc => uc.UserId.Equals(user.Id)).Select(c => c.ToClaim()).ToListAsync(cancellationToken); 376var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 398var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 459return await UserLogins.Where(l => l.UserId.Equals(userId)) 654.Where(p => p.UserId.Equals(userId))
UserStore.cs (5)
456return await UserClaims.Where(uc => uc.UserId.Equals(user.Id)).Select(c => c.ToClaim()).ToListAsync(cancellationToken); 493var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 515var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.ClaimValue == claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken); 576return await UserLogins.Where(l => l.UserId.Equals(userId)) 799.Where(p => p.UserId.Equals(userId))
System.Linq.Queryable (1)
System\Linq\Queryable.cs (1)
56new Func<IQueryable<TSource>, Expression<Func<TSource, bool>>, IQueryable<TSource>>(Where).Method,