Does anyone know of a SQL library in ASP.NET that can be used to manage tables?

Eg

SQLTable table = new SQLTable();

table.AddColumn(“First name”, varchar, 100);

table.AddColumn(“Last name”, varchar, 100);

if(table.ColumnExists(“Company”))

table.RemoveColumn(“Company”);

The operations I am looking for are adding, editing and deleting tables, fields, indexes and foreign keys.

This can be done using SQL but it is messy, I am looking for a clean API that is intuitive to use.

link|improve this question

71% accept rate
Just to nitpick, but shouldn't the first line be: SQLTable table = new SQLTable(); ? – Joel Coehoorn Dec 9 '08 at 1:49
Also: I wouldn't expect it to remove a column you've haven't added, unless you've done something to connect it to an existing table. – Joel Coehoorn Dec 9 '08 at 1:56
OK, issues addressed – Petras Dec 9 '08 at 2:06
feedback

3 Answers

up vote 1 down vote accepted

Use Microsoft.SqlServer.Management.Smo

Other option would be to install the Microsoft Sql Server Web Data Administrator

Sql Server Web Data Administrator

Some references for Smo:

Create Table in SQL Server 2005 Using C# and SMO

How to: Create, Alter, and Remove a Table in Visual Basic .NET (sorry for lang choice)

link|improve this answer
feedback

Subsonic has a migrations feature. It's fairly new, but I think it meets your 'intuitive' requirement.

link|improve this answer
Subsonic will also build scaffolds for you. That's another nice thing that I like about it. – Hector Sosa Jr Dec 9 '08 at 1:40
feedback

I would tell you to use SQL DMO, but it looks like it's being discontinued by the looks of it:

http://msdn.microsoft.com/en-us/library/ms131540.aspx

Not sure what it's being replaced with.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.