Thomas De Craemer
Thomas De Craemer
I'm facing the same issue. The json in local storage after the redirect looks as follows: ``` { "adB2CSignInSignUp": { "error": { "code": "access_denied", "message": "AADB2C90118:+The+user+has+forgotten+their+password.\r\nCorrelation+ID:+3f341530-ed9a-4546-a646-2e2ac3e3b43d\r\nTimestamp:+2017-07-25+19:29:24Z\r\n" }, "error_description": "AADB2C90118:+The+user+has+forgotten+their+password.\r\nCorrelation+ID:+3f341530-ed9a-4546-a646-2e2ac3e3b43d\r\nTimestamp:+2017-07-25+19:29:24Z\r\n", "state":...
@tony-kerz we shouldn't hack a hellojs issue with azure b2c related questions. Please ask them on the appropriate forums such as stackoverflow.
That's correct in this case. The example code was copy pasted from another [documentation page](https://docs.microsoft.com/en-us/aspnet/core/data/ef-rp/concurrency?view=aspnetcore-2.1&tabs=visual-studio). However, the same principle applies.
Might be interesting for others, here's how we solved the problem by using [`LINQKit.Core`](https://github.com/scottksmith95/LINQKit): ```csharp var predicate = PredicateBuilder.New(); foreach (var id in ids) { predicate = predicate.Or(user => user.Id...
Support for ctor injecting an ILogger in domain entities would be a great addition.