Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
namespace Bit.Infrastructure.EntityFramework.Repositories.Queries;
public interface IQuery<TOut>
{
IQueryable<TOut> Run(DatabaseContext dbContext);
}