Click here to Skip to main content
15,886,873 members
Articles / Programming Languages / C#
Tip/Trick

Dynamically Build LINQ to SQL Classes at Runtime

Rate me:
Please Sign up or sign in to vote.
4.50/5 (4 votes)
13 Sep 2013CPOL 23.4K   888   7   5
Dynamically build Linq2Sql classes based off SQL table

Introduction

The attached .cs file looks at a SQL table, generates a LINQ to SQL Object at runtime that can be used to insert, update, and query the database. It is useful for working with your own interactive C# interpreter. The problem it solves; you don't need to design an EDMX file and compile before using.

Using the Code

C#
//make an IDbConnection
IDbConnection oconn = new System.Data.SqlClient.SqlConnection(
  @"Data Source=192.168.0.1;Initial Catalog=db;user id=usr;password=pwd;");

//pass the connection and the table you want
object o = DynamicL2S.L2SClassObject(oconn, "table");
Type itemType = o.GetType();

//create an instance and insert into db
using (DataContext dc = new DataContext(oconn))
{
    var item = (dynamic)Activator.CreateInstance(itemType, new Object[] { });

    item.oid = Guid.NewGuid();
    item.x = 9;
    item.y = 9;
    item.z = 9;
    item.color = Color.Blue.ToArgb();

    dc.GetTable(itemType).InsertOnSubmit(item);

    dc.SubmitChanges();
}

//retrieve all items
using (DataContext dc = new DataContext(oconn))
{
    var res = from r in dc.GetTable(itemType).Cast<dynamic>()
              select r;

    dataGridView1.DataSource = res.ToList();
}

//get properties
System.Reflection.PropertyInfo[] method = o.GetType().GetProperties();
foreach (System.Reflection.PropertyInfo oInf in method)
{
    ret += oInf.Name + " - " + oInf.PropertyType.Name + "\n";
}

Points of Interest

It uses the C# compiler to compile C# classes at run time. It uses object extension methods to force LINQ to allow use of dynamic type when casting.

Credit to Sources

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionthe generated sql query with out where statement Pin
BakriB12-Jun-15 17:46
BakriB12-Jun-15 17:46 
QuestionNice Pin
L Viljoen6-Feb-15 2:22
professionalL Viljoen6-Feb-15 2:22 
QuestionMore examples & minor problems Pin
Dewey12-Sep-13 22:59
Dewey12-Sep-13 22:59 
AnswerRe: More examples & minor problems Pin
oryan13-Sep-13 10:31
professionaloryan13-Sep-13 10:31 
GeneralRe: More examples & minor problems Pin
Dewey24-Sep-13 14:12
Dewey24-Sep-13 14:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.