Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Dapper
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
Dapper
Commits
db942443
Commit
db942443
authored
Apr 23, 2015
by
johan_danforth@hotmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added test for transactions
parent
27abc447
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
1 deletion
+48
-1
Dapper.Contrib.Tests NET45.csproj
Dapper.Contrib.Tests NET45/Dapper.Contrib.Tests NET45.csproj
+1
-0
Dapper.Contrib.Tests.csproj
Dapper.Contrib.Tests/Dapper.Contrib.Tests.csproj
+1
-0
Tests.cs
Dapper.Contrib.Tests/Tests.cs
+46
-1
No files found.
Dapper.Contrib.Tests NET45/Dapper.Contrib.Tests NET45.csproj
View file @
db942443
...
@@ -35,6 +35,7 @@
...
@@ -35,6 +35,7 @@
<Reference
Include=
"System"
/>
<Reference
Include=
"System"
/>
<Reference
Include=
"System.Core"
/>
<Reference
Include=
"System.Core"
/>
<Reference
Include=
"System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL"
/>
<Reference
Include=
"System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL"
/>
<Reference
Include=
"System.Transactions"
/>
<Reference
Include=
"System.Xml.Linq"
/>
<Reference
Include=
"System.Xml.Linq"
/>
<Reference
Include=
"System.Data.DataSetExtensions"
/>
<Reference
Include=
"System.Data.DataSetExtensions"
/>
<Reference
Include=
"Microsoft.CSharp"
/>
<Reference
Include=
"Microsoft.CSharp"
/>
...
...
Dapper.Contrib.Tests/Dapper.Contrib.Tests.csproj
View file @
db942443
...
@@ -45,6 +45,7 @@
...
@@ -45,6 +45,7 @@
<Reference
Include=
"System"
/>
<Reference
Include=
"System"
/>
<Reference
Include=
"System.Core"
/>
<Reference
Include=
"System.Core"
/>
<Reference
Include=
"System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL"
/>
<Reference
Include=
"System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL"
/>
<Reference
Include=
"System.Transactions"
/>
<Reference
Include=
"System.Xml.Linq"
/>
<Reference
Include=
"System.Xml.Linq"
/>
<Reference
Include=
"System.Data.DataSetExtensions"
/>
<Reference
Include=
"System.Data.DataSetExtensions"
/>
<Reference
Include=
"Microsoft.CSharp"
/>
<Reference
Include=
"Microsoft.CSharp"
/>
...
...
Dapper.Contrib.Tests/Tests.cs
View file @
db942443
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
using
System.IO
;
using
System.IO
;
using
System.Linq
;
using
System.Linq
;
using
System.Reflection
;
using
System.Reflection
;
using
System.Transactions
;
using
Dapper.Contrib.Extensions
;
using
Dapper.Contrib.Extensions
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
System
;
using
System
;
...
@@ -54,6 +55,15 @@ private IDbConnection GetOpenConnection()
...
@@ -54,6 +55,15 @@ private IDbConnection GetOpenConnection()
return
connection
;
return
connection
;
}
}
private
IDbConnection
GetConnection
()
{
var
projLoc
=
Assembly
.
GetAssembly
(
GetType
()).
Location
;
var
projFolder
=
Path
.
GetDirectoryName
(
projLoc
);
var
connection
=
new
SqlCeConnection
(
"Data Source = "
+
projFolder
+
"\\Test.sdf;"
);
return
connection
;
}
public
void
TableName
()
public
void
TableName
()
{
{
using
(
var
connection
=
GetOpenConnection
())
using
(
var
connection
=
GetOpenConnection
())
...
@@ -116,6 +126,41 @@ public void InsertGetUpdate()
...
@@ -116,6 +126,41 @@ public void InsertGetUpdate()
}
}
}
}
public
void
Transactions
()
{
using
(
var
connection
=
GetOpenConnection
())
{
var
id
=
connection
.
Insert
(
new
Car
{
Name
=
"one car"
});
//insert outside transaction
var
tran
=
connection
.
BeginTransaction
();
var
car
=
connection
.
Get
<
Car
>(
id
,
tran
);
var
orgName
=
car
.
Name
;
car
.
Name
=
"Another car"
;
connection
.
Update
(
car
,
tran
);
tran
.
Rollback
();
car
=
connection
.
Get
<
Car
>(
id
);
//updates should have been rolled back
car
.
Name
.
IsEqualTo
(
orgName
);
}
}
public
void
TransactionScope
()
{
using
(
var
connection
=
GetConnection
())
{
using
(
var
txscope
=
new
TransactionScope
())
{
connection
.
Open
();
//connection MUST be opened inside the transactionscope
var
id
=
connection
.
Insert
(
new
Car
{
Name
=
"one car"
});
//inser car within transaction
txscope
.
Dispose
();
//rollback
connection
.
Get
<
Car
>(
id
).
IsNull
();
//returns null - car with that id should not exist
}
}
}
public
void
InsertCheckKey
()
public
void
InsertCheckKey
()
{
{
using
(
var
connection
=
GetOpenConnection
())
using
(
var
connection
=
GetOpenConnection
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment