On a whim I decided to attempt to create a phpMyAdmin-like interface using ASP.NET and LINQ. Here is the general idea I was aiming for: Create a normal "LINQ to SQL" class. Load the class into a generic web admin utility. Browse and mange the data via a web page. I didn't want to manually create a LinqDataSource and associate specific tables and columns with DataGrids. I wanted everything to be fetched and generated automatically from the "LINQ to SQL" class. Here is my first attempt at accomplishing
Read More...