I have 3 primary Tables - Picture, Album and Collage. Collage and Album can have 1-many pictures. Pictures do not have to be in Album to be added to the Collage.
To define their relationship, I have AlbumPicture and CollagePicture tables.
My problem is when I try to add picture already uploaded to the Collage and hence to the CollagePicture table. It throws primry key violation error on PK_Picture since picture already exists.
CollagePictures.InsertOnSubmit(new CollagePicture {Collage = CollagePicture = existingPic});
I need to add one record in CollagePicture for existing picture and new Collage. Is there any way I can tell linq to not add picture if it already exists?
I am new to Linq and still learning.
EDIT: sorry If I was not clear. I assign PK to Picture as GUID when Pictures are uploaded. In CollagePicture I already have this pictureId with different collage
e.g.
CollagePictureId [PK]= 1
CollageId=1
PictureId = 1234567890123456
Now I want to add same Picture with different CollageId say,2. When I try to add anything to CollagePicture it tries to add to the Picture table as well. and that is when I get an exception. Hope this will clear things up.