Search Results

2
votes
3answers
472 views

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 …
0
votes

.NET Migrations Engine

It's not from MS, but The Castle Project aims to bring a lot of Rails functionality to the CLR languages. A sub-project …
5
votes

Embedded Database for .net that can run off a network

It sounds like ADO/Access is perfect for your needs. It's baked into the MS stack, well seasoned, and multi-user. You can programatically create a DB like so: Dim catalo …