Click here to Skip to main content
15,867,966 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I have a web application with a SQL DB project linked to a database and have generated the .Net Membership DB using aspnet_regsql.

I then have a number of tables that I want to have foreign keys referencing some of the generated tables but I get errors because VS can't see that the tables I am referencing actually exist. I was hoping there was a way to fix this issue?

An example of one table:
SQL
create table dbo.tblPlayerPicks
(
    UserName nvarchar(256) foreign key references dbo.aspnet_Users(UserName) -- This is where it errors
    ...
)


Any help would be appreciated.

Thanks
Posted
Comments
Qadri Jillani 11-Jul-13 19:07pm    
have you created all the tables at dbo level or user level?
if the table is at user level and you are using dbo.table than it would not work for you

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900