I\'m trying to connect to an SQL Server 2008 database in a shared hosting environment from C# from within an ASP.NET MVC 3 application connecting via EF (code first).
You can specify the schema using a property on the TableAttribute that decorates your entity classes.
TableAttribute
[Table("TableName", Schema = "mySQLUserName")]