It's my first time using Azure and i'm having problems.
I have a register and login script within my MVC project and it works fine on my local machine however when I try to use Azure I get this message on the page "An error occurred while processing your request."
I have allowed the IP in the firewall. I have linked the database with the site.
The project uses code first models. When I try to register it will create the table in the database but it will not input the users data. So all I'm left with is an empty table.
Also when I try to Deploy my database from Sql management studio it creates the tables but fails to input data.
What am I doing wrong?
EDIT:
So when I try to Deploy my database from SQL Management Studio this is the error I get during importing database
TITLE: Microsoft SQL Server Management Studio
------------------------------
Could not import package.
Warning SQL0: A project which specifies SQL Server 2012 as the target platform may experience compatibility issues with SQL Azure.
Error SQL72014: .Net SqlClient Data Provider: Msg 40511, Level 15, State 1, Line 2 Built-in function 'newsequentialid' is not supported in this version of SQL Server.
Error SQL72045: Script execution error. The executed script:
ALTER TABLE [dbo].[Domains]
ADD DEFAULT (newsequentialid()) FOR [DomainId];
(Microsoft.SqlServer.Dac)
I think this is due to my model using GUID. Could this be what is causing all these issues with the database on Azure?