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();
}
我使用這個使用... – Alexandre