-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from cajuncoding/feature/avoid_schema_locks_as…
…_default_behavior Refactor and enhance to now avoid Schema Locks as default behavior in…
- Loading branch information
Showing
12 changed files
with
339 additions
and
142 deletions.
There are no files selected for viewing
This file contains 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 file contains 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
3 changes: 2 additions & 1 deletion
3
NetStandard.SqlBulkHelpers/MaterializedData/IMaterializeDataContextCompletionSource.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
using System.Threading.Tasks; | ||
using Microsoft.Data.SqlClient; | ||
|
||
namespace SqlBulkHelpers.MaterializedData | ||
{ | ||
public interface IMaterializeDataContextCompletionSource : IMaterializeDataContext | ||
{ | ||
Task FinishMaterializeDataProcessAsync(); | ||
Task FinishMaterializeDataProcessAsync(SqlTransaction sqlTransaction); | ||
} | ||
} |
This file contains 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
Oops, something went wrong.