Is it possible to get current unit of work in DbContext? Right now i'm using like this:
_unitOfWorkManager.Current.Completed += (sender, args) => {};
I want to get Id of some entites that are created.
How to find user by email in Web.Api. I have tried this way: var user = await _userManager.FindByEmailAsync(registerModel.Email); It is always giving me null. Note:- Multi tenancy is on.