VS 2012 Database Project “unresolved reference to object” Error

后端 未结 9 1254
再見小時候
再見小時候 2020-12-16 09:02

I created SQL Server Database Project in VS 2012 & imported our database. When I build the project, I get a lot of \"unresolved reference to object\" Errors. These error

9条回答
  •  囚心锁ツ
    2020-12-16 10:02

    I solved this issue.

    It seems a few of my views/SPs have referenced the tables using this naming convention ( 3 parts qualified name ):

    DatabaseName.SchemaName.TableName

    I changed all references to be as the following:

    SchemaName.TableName

提交回复
热议问题