LinqToSql Plus UsePermanentTable
Description
Gets or sets if the library should create
and drop
a permanent table instead of using a temporary table.
context.BulkSaveChanges(options =>
{
options.UsePermanentTable = true;
});
Purpose
This option can be useful when for some rare reasons, you don't have access to the tempdb
database.