vote up 2 vote down star
1

I have a table that has a primary key that's an INT... I have another table, that has a foreignkey relationship to that first table, but it's a NULLABLE INT.

This is perfectly ok, and 100% acceptable to SQL... however LINQ to SQL is complaining about mismatched types ("int to Nullable[int]").

Error Message: Cannot create an association "Store_People". Properties do not have matching types: "PersonID", "ID".

How do I solve this so that the designer stops yelling at a 100% correct usage of SQL?

flag

In what context does this "complaining" occur? Could we see a code sample or representative line that demonstrates the problem? Or is it in SqlMetal or the DBML design surface? – GalacticCowboy Nov 19 '08 at 20:59
Visual Studio... Add DBML... add two tables as described above... try to compile. – Timothy Khouri Nov 19 '08 at 21:03

3 Answers

vote up 2 vote down check

Here's what I threw together. Table2's Table1Id column is a nullable foreign key to Table1. I even threw in a few data records and tested some Linq queries...

alt text

link|flag
Wow... linking a thumbnail in SO is needlessly complicated... – GalacticCowboy Nov 19 '08 at 21:44
Thanks for your help... I found the problem. – Timothy Khouri Nov 21 '08 at 18:56
vote up 1 vote down

I have precisely that situation in a DBML now, and it is working fine.

Primary Key

  • Nullable - False
  • Primary Key - True
  • Server Data type - int NOT NULL IDENTITY
  • Type - int (System.Int32)

Foreign Key

  • Nullable - Trure
  • Primary Key - False
  • Server Data type - Int
  • Type - int (System.Int32) (actually defined as Nullable in the context.designer.cs file)
link|flag
Yeah, me too... scratching my head why it's not working for him. – GalacticCowboy Nov 19 '08 at 21:33
vote up 2 vote down

I found the problem. You can create the association ONLY if the parent class doesn't have the Nullable field as the key.

So, this:

alt text

will cause this error:

alt text

...but this:

alt text

will work perfectly.

That looks like a bug (or at least, a stupidity of LINQ to SQL)... but I love it other than that.

link|flag
Not a bug, you were just associating them the wrong way round. – Garry Shutler Nov 21 '08 at 19:07
Effectively what you were trying to do, it sounds like, was set the dependent table as the parent and the table that defined the foreign key as the child - i.e., the relationship would work the opposite of your intent. FWIW, SQL won't let you create a relationship like this either. – GalacticCowboy Nov 21 '08 at 19:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.