Daarto icon indicating copy to clipboard operation
Daarto copied to clipboard

Dapper implementation of ASP.NET Core Identity stores.

Results 21 Daarto issues
Sort by recently updated
recently updated
newest added

At the moment each of the 8 classes inheriting from `IdentityTable` create their own open connection to the DB at instantiation, all of which will only be closed when the...

At the moment the calls to the `table` classes (interacting with the database) return a boolean for a successful or unsuccessful create update and delete operations and the stores create...

When trying to RemoveFromRoleAsync using the following method: ![Screenshot 2020-10-18 223649](https://user-images.githubusercontent.com/1229683/96398857-7cb3fd00-1192-11eb-9c21-469cf99ae6fd.png) This line does not remove the user role: https://github.com/giorgos07/Daarto/blob/f19411ecbb08d67fabf31c65984622f740373a6d/src/AspNetCore.Identity.Dapper/Stores/UserStore.cs#L303 It does not generate an error, but just doesn't remove...

I am trying to get a list of Roles by using _roleManager.Roles. Here is my code: > public class RoleManagerController : Controller > { > private RoleManager _roleManager; > >...

Grabbed the test code from here: https://github.com/giorgos07/Daarto/issues/14 I tried overriding database names by using the class AppUser.cs and AppUsersTable.cs and setting the table name from AspNetUsers to Users: public class...

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

Hello, If I would like use another schema than "dbo" I need overwrite all of the Table queries. It would be great if I can change the schema with option...

Hello, I would like to use Guid ID type as ID of Users and Roles... In the current extension method the 'string' type is hardcoded in more place (one example):...

There is a missing parameter in the SQL for UpdateAsync in the UserTable.cs file. The query requires an id parameter to execute correctly. This can be seen if you try...