Okay, I understand your issue now. You're talking about the compatibility level. If this is a database in your Visual Studio project (e.g., a .mdf file) you will have to first detach it from the project (hint: using right-click on the database), attach it to SQL Server using SQL Server Management Studio, then make the following change using SQL:
Code:
ALTER DATABASE database_name
SET COMPATIBILITY_LEVEL = 90
If your database is separate, you can just run the above query and that will then make the database 2005 compatible. Happy coding!