I am using MySql membership provider with .NET MVC 4 application and have configured it according to this tutorial .
The problem is that the provider sets up the table mysql_aspnet_userswith UserID PK as INT(11), while the MSSQL provider uses UNIQUEIDENTIFIER.
I need to transfer existing users to this database, and I would prefer to save the Guid"Users" and "Membership" tables as the primary key.
Is there a way to do this using the MySql membership provider ?
Or do I need to write my own MySql membership provider to use UUIDsas primary keys?
I searched for any documentation or “non-hacked” ways to do this, but so far no luck.
source
share