This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class SqlBulkCopyForDapper | |
{ | |
public static void BulkInsert<T>(this IDbConnection connection, IList<T> list) | |
{ | |
var conn = connection as SqlConnection; | |
if (conn == null) | |
throw new Exception("conn is not SQLConnection"); | |
if(conn.State != ConnectionState.Open) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//this is using your latest marionette version v0.4.3 | |
BBAdmin.MailApp = (function(BBAdmin, Backbone){ | |
var MailApp = {}; | |
// Email Model And Collection | |
// -------------------------- | |
MailApp.Group = Backbone.Model.extend({}); |