У нас вы можете посмотреть бесплатно NestJS Abstract Repository Pattern или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
The Abstract Repository pattern decouples the business logic from the data layer. Consider the scenario that we have created all of our end points, only to discover that our ORM is making suboptimal queries. All of our services would be coupled to TypeORM's unique methods. Switching to another ORM would require us to manually change all of those methods. The Abstract Repository pattern solves this issue by having the ORM specific operations in an abstract repository that our specific entities can extend. Thus, changes can be made in just one file, without worrying about needing to update our entire code base. -------------------------------------------------- Recommended Udemy courses -------------------------------------------------- NestJS - Zero to Hero: https://tinyurl.com/3rxsz669 React - The Complete Guide: https://tinyurl.com/2t6v5yeu Angular - The Complete Guide: https://tinyurl.com/4h5rmpsj React Native - The Practical Guide: https://tinyurl.com/3wzmdzht Docker Mastery (with Kubernetes + Swarm): https://tinyurl.com/yeymdnhn NestJS API code: https://github.com/Jon-Peppinck/messe... React Native code: https://github.com/Jon-Peppinck/faceb... 00:00-Introduction 00:45-Type ORM Method Manually 01:18-Type ORM Method Save 02:18-Change Type ORM 02:32-API Structure 03:06-FACADE Pattern 03:42-Structure Class Pattern 03:51-FACADE Pattern Uses 04:24-Coding (FB Messenger Clone) 04:24-Shout out 05:30-Abstract Repo Overview and Base Interface 12:01-Base Abstract Repository 19:38-Using Abstract Repo for User Operations