I am trying to use the following template:
-- ================================================= -- Create User as DBO template for SQL Azure Database -- ====
create a user and then add user to a specific role:
CREATE USER [test] WITH PASSWORD=N'' go ALTER ROLE [db_datareader] ADD MEMBER [test] go