Commit 2d0ae2b1 authored by johandanforth's avatar johandanforth

Revert "Added test for transactions"

This reverts commit db942443.
parent eca4243a
...@@ -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" />
......
...@@ -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" />
......
...@@ -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())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment