Hi I have two table they are Master and Detail

I am creating a DataRelation with two table on C# windows application.

    > SqlConnection MyCon=new SqlConnection(ConnectionString);
    >         
    >         SqlDataAdapter StudentAdapter =new SqlDataAdapter("Select *
    > from Students",MyCon);
    >         SqlDataAdapter LessonAdapter  =new SqlDataAdapter("Select *
    > from Lessons ",MyCon);
    >     
    >         DataSet MyDataSet=new DataSet();
    >     
    >     StudentAdapter.Fill(MyDataSet,"student");
    >     LessonAdapter.Fill(MyDataSet,"lesson");
    >     
    >     DataRelation MyRelation=new
    > DataRelation("Relationm",MyDataSet.Tables["student"].Columns["Id"],MyDataSet.Tables["Lesson"].Columns["studentId"]);
    >     
    >     MyDataSet.Relations.Add(MyRelation);
    >     
    >     BindingSource StudentBs=new BindingSource(MyDataSet,"student");
    >     BindingSource LessonBs=new BindingSource(StudentBs,"Relationm");
    >     
StudentBs.AddNew();
    >     
    >     gridControl1.DataSource=StudentBs;
    >     gridControl2.DataSource=LessonBs;

I am traing use program with multi client.when First CLient open the form BindingSource have last identity for primarykey if first client dont save the student (but form has opend) and another client open the program and try to add new values first or second client save child values another because child columns dont get the Identity Value How can I ?

link|improve this question

75% accept rate
I didn't use something like this for a long time but i think you need to set the column type to identity in your dataset or database or maybe both – TheDarkLord Jul 23 '11 at 20:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.