My Database Tables and thier relationship

This is my database structure I have four tables. Table LocalArea and Lanungaue have master data and which refered by the tables Address and AddressTranslated

Now I want to add rows in Address and AddressTranslated table I used following code store Address table row

Address.localarea = new localarea() { LocalAreaID = 1 };

        using (var context = new en_Entities())
        {

            context.Address.Attach(Address);
            context.ObjectStateManager.ChangeObjectState(Address.LocalArea, EntityState.Unchanged);
            context.ObjectStateManager.ChangeObjectState(Address, EntityState.Added);

            context.SaveChanges();
        }

The code working fine and adds row in Address table.

How do i add row in AddressTranslated ?? what changes/line of code do i need to add data in AddressTranslate table.

link|improve this question

65% accept rate
+1 for the whiteboard picture :) – Alastair Pitts Oct 25 '11 at 5:26
feedback

2 Answers

address.AddressTranslations.Add(translation);
context.Address.Add(address); <--- this will automatically mark both as added.
context.SaveChanges();

Assuming AddressTranslations is the collection navigation property for translations

link|improve this answer
no it giving an exception {"You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(SELECT\n addresstranslate.PropertyAddressID, \n rea' at line 1"} – pramod choudhari Oct 25 '11 at 6:09
1  
The problem is in mysql provider then. It should work. – Hasan Khan Oct 25 '11 at 6:15
feedback
up vote 0 down vote accepted

My AddressTranslated table was not having any primary key column thats why couldnt add row to childtable.

After adding a primary key column all records got saved to DB.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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