Click here to Skip to main content
Click here to Skip to main content

Using SQL bulk copy with your LINQ-to-SQL datacontext

By , 25 Jan 2012
 

Linq-to-SQL is great for many things but it doesn't do very well with huge amounts of inserts. Extending the data context partial class with the following though will do the trick. I also wrote about this here. All you need to do is to create your LINQ entities just as you usually do and call the BulkInsertAll method on the datacontext. Also, do not use this datacontext for anything else before doing the bulk insert. The connection string of the datacontext that we use to create the SQLConnection here loses its password after its first use for some reason and that makes it, obviously, a bit difficult to connect.

partial class MyDataContext
{
    partial void OnCreated()
    {
        CommandTimeout = 5 * 60;
    }
 
    public void BulkInsertAll<T>(IEnumerable<T> entities)
    {
        entities = entities.ToArray();
 
        string cs = Connection.ConnectionString;
        var conn = new SqlConnection(cs);
        conn.Open();
 
        Type t = typeof(T);
 
        var tableAttribute = (TableAttribute)t.GetCustomAttributes(
            typeof(TableAttribute), false).Single();
        var bulkCopy = new SqlBulkCopy(conn) { 
            DestinationTableName = tableAttribute.Name };
 
        var properties = t.GetProperties().Where(EventTypeFilter).ToArray();
        var table = new DataTable();
        
        foreach (var property in properties)
        {
            Type propertyType = property.PropertyType;
            if (propertyType.IsGenericType &&
                propertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
            {
                propertyType = Nullable.GetUnderlyingType(propertyType);
            }
 
            table.Columns.Add(new DataColumn(property.Name, propertyType));
        }
 
        foreach (var entity in entities)
        {
            table.Rows.Add(properties.Select(
              property => GetPropertyValue(
              property.GetValue(entity, null))).ToArray());
        }
 
        bulkCopy.WriteToServer(table);
        conn.Close();
    }
 
    private bool EventTypeFilter(System.Reflection.PropertyInfo p)
    {
        var attribute = Attribute.GetCustomAttribute(p, 
            typeof (AssociationAttribute)) as AssociationAttribute;
 
        if (attribute == null) return true;
        if (attribute.IsForeignKey == false) return true; 
        
        return false;
    }
 
    private object GetPropertyValue(object o)
    {
        if (o == null)
            return DBNull.Value;
        return o;
    }
}

License

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

About the Author

Måns Tånneryd
Sweden Sweden
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generalnice Pinmemberprabhakamaji11 Dec '11 - 18:50 
GeneralReason for my vote of 5 nice Pinmemberprabhakamaji11 Dec '11 - 18:50 
GeneralReason for my vote of 5 Reason for my vote of 5 Nice Tips PinmemberRaviKrSingh9 Dec '11 - 20:29 
GeneralReason for my vote of 5 Nice! PinmvpMika Wendelius9 Dec '11 - 10:03 
GeneralReason for my vote of 5 lol... that is pretty slick! PinmemberHoyaSaxa939 Dec '11 - 7:05 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 25 Jan 2012
Article Copyright 2011 by Måns Tånneryd
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid