I have to use ASP.NET Identity System in Web Forms Application (VS 2013). It feels me tedious using Migrations and creating new fields in AspNetUsers Table.
Please help me and community is there any way we can create fields without running Migration commands like Enable-Migrations, Add-Migration, Update-Database.
So far as I know, it’s possible to have apps that do not use migrations (these are referred to as “unmigrated” apps) - these apps will instead mimic the legacy behavior of just adding new models. We can refer to use migrate-stop (mst) command to
stop an active migration operation.
We should refer to update the property for the stopping.
For more information, please refer to the links below:
Member
14 Points
80 Posts
How to Customize User's Profile in ASP.NET Identity System without migration?
Mar 31, 2014 08:42 AM|rana-anees@hotmail.com|LINK
Hello,
I have to use ASP.NET Identity System in Web Forms Application (VS 2013). It feels me tedious using Migrations and creating new fields in AspNetUsers Table.
Please help me and community is there any way we can create fields without running Migration commands like Enable-Migrations, Add-Migration, Update-Database.
Thanks,
Muhammad Anees
All-Star
18232 Points
2199 Posts
Re: How to Customize User's Profile in ASP.NET Identity System without migration?
Mar 31, 2014 11:04 PM|Michelle Ge - MSFT|LINK
Hi,
So far as I know, it’s possible to have apps that do not use migrations (these are referred to as “unmigrated” apps) - these apps will instead mimic the legacy behavior of just adding new models. We can refer to use migrate-stop (mst) command to stop an active migration operation.
We should refer to update the property for the stopping.
For more information, please refer to the links below:
https://drupal.org/node/1561820
https://docs.djangoproject.com/en/dev/topics/migrations/
Hope it's useful for you.
Best Regards,
Michelle Ge