I have a custom user store that implements IUserClaimStore. That way, I need to implement GetClaimsAsync method, but I am stuck here.
This is my current implementation:
public Task<IList<Claim>> GetClaimsAsync(T user)
{
return Task.FromResult(new List<Claim>());
}
This is not valid since List does not implement IList. So the question is, how can I do it?
Thanks
Jaime