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
2d0ae2b1
Commit
2d0ae2b1
authored
May 01, 2015
by
johandanforth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Added test for transactions"
This reverts commit
db942443
.
parent
eca4243a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
48 deletions
+1
-48
Dapper.Contrib.Tests NET45.csproj
Dapper.Contrib.Tests NET45/Dapper.Contrib.Tests NET45.csproj
+0
-1
Dapper.Contrib.Tests.csproj
Dapper.Contrib.Tests/Dapper.Contrib.Tests.csproj
+0
-1
Tests.cs
Dapper.Contrib.Tests/Tests.cs
+1
-46
No files found.
Dapper.Contrib.Tests NET45/Dapper.Contrib.Tests NET45.csproj
View file @
2d0ae2b1
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
<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 @
2d0ae2b1
...
@@ -45,7 +45,6 @@
...
@@ -45,7 +45,6 @@
<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 @
2d0ae2b1
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
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
;
...
@@ -55,15 +54,6 @@ private IDbConnection GetOpenConnection()
...
@@ -55,15 +54,6 @@ 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
())
...
@@ -100,7 +90,7 @@ public void InsertGetUpdate()
...
@@ -100,7 +90,7 @@ public void InsertGetUpdate()
connection
.
Insert
(
new
Car
{
Name
=
"Volvo"
,
Computed
=
"this property should be ignored"
});
connection
.
Insert
(
new
Car
{
Name
=
"Volvo"
,
Computed
=
"this property should be ignored"
});
var
id
=
connection
.
Insert
(
new
User
{
Name
=
"Adam"
,
Age
=
10
});
var
id
=
connection
.
Insert
(
new
User
{
Name
=
"Adam"
,
Age
=
10
});
//get a user with "isdirty" tracking
//get a user with "isdirty" tracking
var
user
=
connection
.
Get
<
IUser
>(
id
);
var
user
=
connection
.
Get
<
IUser
>(
id
);
user
.
Name
.
IsEqualTo
(
"Adam"
);
user
.
Name
.
IsEqualTo
(
"Adam"
);
...
@@ -126,41 +116,6 @@ public void InsertGetUpdate()
...
@@ -126,41 +116,6 @@ 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