You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Issue-Label Bot is automatically applying the label feature_request to this issue, with a confidence of 0.61. Please mark this comment with 👍 or 👎 to give our bot feedback!
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 thisvar userRepository = _unitOfWork.GetRepository<User>(hasCustomRepository: true) as UsersRepository;
, so is there some way to get access to the custom methods without converting it manuallyThe text was updated successfully, but these errors were encountered: