Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Dapper.Data NET40/Dapper.Data NET40.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapper, Version=1.27.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="Dapper, Version=1.29.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>packages\Dapper.1.27\lib\net40\Dapper.dll</HintPath>
<HintPath>..\Dapper.Data NET45\packages\Dapper.1.29\lib\net40\Dapper.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
Expand All @@ -66,13 +66,16 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Data\CommandDefinitionHelper.cs" />
<Compile Include="Data\ConnectionStringBuilder.cs" />
<Compile Include="Data\DbConnectionFactory.cs" />
<Compile Include="Data\DbContext.cs" />
<Compile Include="Data\Generic\DbContext.cs" />
<Compile Include="Data\Generic\Services\DbService.cs" />
<Compile Include="Data\Generic\Services\DbServiceProvider.cs" />
<Compile Include="Data\Service\DbService.cs" />
<Compile Include="Data\Service\DbServiceProvider.cs" />
<Compile Include="Data\SqlServer\SqlConnectionFactory.cs" />
<Compile Include="Data\SqlServer\SqlContext.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
Expand Down
22 changes: 0 additions & 22 deletions Dapper.Data NET40/Data/CommandDefinitionHelper.cs

This file was deleted.

3 changes: 1 addition & 2 deletions Dapper.Data NET40/Data/DbConnectionFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ internal static IDbConnection CreateConnection(this DbProviderFactory sender, st
/// </summary>
internal static IDbConnection CreateOpenedConnection(this DbProviderFactory sender, string connectionString)
{
var connection = sender.CreateConnection();
connection.ConnectionString = connectionString;
var connection = sender.CreateConnection(connectionString);
connection.Open();
return connection;
}
Expand Down
Loading