Make sure that the product table was created using the dbo scheme, many times the scheme will be something other than dbo , for example, it can be your username or server name (if the account you are working with is not in the db_owner scheme). Open DB (starting with SQLExpress) using Server Explorer in Visual Studio)
To do this, right-click on the table name and select Open table definition , then in the table definition, right-click and select Properties , and in the properties window, check what is indicated in the list in the schema value. If this is not a DBO, then you should be able to change it to dbo and save it.
source share