错误SQL04111:Visual Studio 2010数据库项目

| 我在Visual Studio 2010数据库项目的表中创建了一个关系,但出现此错误:
Error SQL04111: The referenced table \'[dbo].[tblAccount]\' contains no primary or candidate keys that match the referencing column list in the foreign key. If the referenced column is a computed column, it should be persisted.
这是外键:
ALTER TABLE [dbo].[tblDispute]
    ADD CONSTRAINT [FK_AccountNo] 
    FOREIGN KEY (AccountNo)
    REFERENCES tblAccount ([Account No])  ON DELETE NO ACTION ON UPDATE CASCADE;
我该如何解决?     
已邀请:
好的,我通过添加帐户表中的另一列来解决此问题。帐户表具有两列主键/复合键,在争议表中,我仅添加了两个表之一。     

要回复问题请先登录注册