giorgos07/Daarto

Maybe we should be able to get a list with all users in it

Opened this issue · 2 comments

:( public override IQueryable<TUser> Users => throw new NotSupportedException();

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.

I needed to expose an endpoint in my REST API in order to return a list of all users, had no choice 🤷🏻‍♂️