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 ?