-
Notifications
You must be signed in to change notification settings - Fork 345
Open
Labels
Description
Hi, how I can add a custom method to the custom repository, now when I get the repository using
_unitOfWork.GetRepository<User>(hasCustomRepository: true) its impossible to get the custom methods available inside the UserRepository, always I have to convert it to UserRepository using something like this var userRepository = _unitOfWork.GetRepository<User>(hasCustomRepository: true) as UsersRepository; , so is there some way to get access to the custom methods without converting it manually
josepd247 and jwadaptivity