我试图使用this,但系统无法找到lib的方法... lib的文档中没有指定任何内容。正在运行,例如:找不到GetContext(),找不到自己的BulkInser ....我在我的代码顶部放置了使用lib,但没有任何效果..... 我如何使用那个Lib? (我使用的是VS2013)
我的代码:
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 :(得分:0)
您需要包含库...
using EntityFramework.BulkInsert.Extensions;
将此添加到班级的顶部。