Karan Desai

Results 3 issues of Karan Desai

I am trying to run node-horseman in httptriggered azure function. I installed node-horseman using npm in azure function directory as well. However various service calls like, Log(), on(), open() etc...

I am facing difficulty in setting up User Store using this library. There is no sample or usage guide that clearly showcase how to setup user store. My code is...

Here is my UserStoreInt implementation, ``` public class UserStore : UserStoreInt { public UserStore(DbContext context) : base(context) { } } ``` And I am accessing FindByIdAsync method in some repository...