So, I have been searching all over the internet for a solution. I've done a lot of research and it has only left me more lost. I am creating an MVC 5 site for Azure and I am having trouble setting up Role Management.
When I use the Roles object I get an error of "Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'" I found this link but I don't know how it would apply to Azure.
My web.config file is currently set up like this.
<add name="RoleDB" connectionString="Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\Techdb3.mdf;Integrated Security=True" providerName="System.Data.SqlClient" />
<roleManager enabled="true">
<providers>
<clear/>
<add connectionStringName="RoleDB"
name="AspNetSqlRoleProvider"
type="System.Web.Security.SqlRoleProvider"
applicationName="TechAndGames" />
</providers>
</roleManager>