I have an entity query that is storing information with the aspnet_Users’s UserID along with a form submission. How can I access the the aspnet_users table in entity? Do I have to create a new data model in order to access the built-in table?
I have an entity query that is storing information with the aspnet_Users’s UserID along
Share
According to Entity Framework code first aspnet_Users mapping / joins, creating EF model for aspnet_* tables is not recommended. Rather, you should use ASPNET APIs for role/membership provider. In case of data sharing with other tables, create views and do not update aspnet_* tables.