Maybe we should be able to get a list with all users in it
renatoeufe opened this issue · 2 comments
renatoeufe commented
:( public override IQueryable<TUser> Users => throw new NotSupportedException();
Sajeewa-Diss commented
I wanted to implement this myself and similarly for the Roles property in the Roles store. However, both run into the same problem. To return an IQueryable in Dapper we would have to bodge it by returning an IEnumerable AS IQueryable. I think a cleaner solution is not implement it at all.
renatoeufe commented
I needed to expose an endpoint in my REST API in order to return a list of all users, had no choice 🤷🏻♂️