1

If I create a relation between 2 DataTable in my C# code and then update my DataAdapter + acceptChanged on my DataSet, will this Relation be repercuted on the server or is it only a client based relation which is effective only within the application?

Thanks,

KiTe

kite
  • 679
  • 2
  • 8
  • 19

1 Answers1

1

The relationship is made within your dataset, the database will not be modified.

as-cii
  • 12,819
  • 4
  • 41
  • 43