I have a simple table with autoincrementing ID's and one text column. id(int), value(nvarchar)
In another User table I have this ID as a foreign key. When i retrieve datat using Linq to Sql, I get the text value of the associated ID in one simple call.
What about when I need to save into the User table when i only have the text and not the id? only the id is stored in the usertable.
am i desinging this incorrectly?