Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you persist a tree structure to a database table with auto incrementing IDs using an ADO.NET DataSet and a DataAdapter

I have a self-referential Role table that represents a tree structure

ID [INT] AUTO INCREMENT
Name [VARCHAR]
ParentID [INT]

I am using an ADO.NET DataTable and DataAdapter to load and save values to this table. This works if I only create children of existing rows. If I make a child row, then make a child of that child, then Update, the temporary ID value generated by the DataTable is going into the ParentID column. I have the following data relation set:

dataset.Relations.Add(New DataRelation("RoleToRole",RoleTable.Columns("ID"), RoleTable.Columns("ParentID")))

And when I make new child rows in the DataTable I call the SetParentRow method

newRow.SetParentRow(parentRow)

Is there something special I have to do to get the ID generation to propagate recursively when I call Update on the DataAdapter?

like image 803
Justin Walgran Avatar asked Aug 07 '08 20:08

Justin Walgran


1 Answers

I don't know ADO.net in particular, but most ORMs won't automatically insert the ID of a new record in a relationship. You'll have to resort to the 2-step process:

  1. build and save parent
  2. build and save child with relationship to parent

The reason that this is difficult for ORMs is because you might have circular dependencies, and it wouldn't know which object it needed to create an ID for first. Some ORMs are smart enough to figure out those relationships where there are no such circular dependencies, but most aren't.

like image 53
James A. Rosen Avatar answered Sep 24 '22 20:09

James A. Rosen