2014-06-16 38 views
2

我試圖使用this,但系統找不到lib的方法... 沒有在lib的文檔中指定的東西。例如:沒有找到GetContext(),沒有找到自己的BulkInser ....我在代碼的頂部使用lib,但沒有任何作品..... 我怎麼能使用那個Lib? (我使用VS2013)如何使用EntityFramework BulkInsert?

我的代碼:

using EntityFramework.BulkInsert.Extensions; 

using (var transactionScope = new TransactionScope()) 
{ 
    var ctx = new MyDBCon.MyDBDataContext(); 

    ctx.BulkInsert(linhas); // error in BulkInsert (method not found) 

    ctx.SubmitChanges(); 
    transactionScope.Complete(); 
} 

回答

0

您需要包括庫...

using EntityFramework.BulkInsert.Extensions; 

添加到您的班上名列前茅。

+0

我使用這個使用... – Alexandre