Repository
This page summarizes the information & use of the repository component.
Concepts
Usage
@Repository()import { Repository, MandarineRepository } from "https://deno.land/x/mandarinets/mod.ts";
@Repository()
abstract class MyRepository extends MandarineRepository<YourModel> {
constructor() {
super(YourModel);
}
}Last updated