typeorm-linq-repository
Version:
Wraps TypeORM repository pattern and QueryBuilder using fluent, LINQ-style queries.
8 lines (7 loc) • 353 B
TypeScript
import { EntityBase } from "../../types/EntityBase";
/**
* Used to select the desired propery from the desired entity when using an inner query.
* No further methods may be used after selecting a property because this interface is meant to serve just that purpose.
*/
export interface ISelectQuery<T extends EntityBase, R extends T | T[], P = T> {
}