kite
kite

Reputation: 679

ADO.NET DataRelation

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

Upvotes: 1

Views: 405

Answers (1)

as-cii
as-cii

Reputation: 13019

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

Upvotes: 1

Related Questions