File tree Expand file tree Collapse file tree 3 files changed +0
-26
lines changed
benchmarks/Dapper.Tests.Performance Expand file tree Collapse file tree 3 files changed +0
-26
lines changed Original file line number Diff line number Diff line change 38
38
<ItemGroup Condition =" '$(TargetFramework)' == 'net462'" >
39
39
<ProjectReference Include =" ../../Dapper.EntityFramework/Dapper.EntityFramework.csproj" />
40
40
<PackageReference Include =" Microsoft.SqlServer.Types" Version =" 14.0.1016.290" />
41
- <PackageReference Include =" Soma" Version =" 1.9.0.1" />
42
41
<PackageReference Include =" SubSonic" Version =" 3.0.0.4" />
43
42
<PackageReference Include =" Susanoo.SqlServer" Version =" 1.2.4.2" />
44
43
<PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" [3.1.10]" />
Original file line number Diff line number Diff line change 1
1
using System ;
2
- #if NET4X
3
- using Soma . Core ;
4
- #endif
5
2
6
3
namespace Dapper . Tests . Performance
7
4
{
8
5
[ ServiceStack . DataAnnotations . Alias ( "Posts" ) ]
9
- #if NET4X
10
- [ Table ( Name = "Posts" ) ]
11
- #endif
12
6
[ LinqToDB . Mapping . Table ( Name = "Posts" ) ]
13
7
public class Post
14
8
{
15
- #if NET4X
16
- [ Id ( IdKind . Identity ) ]
17
- #endif
18
9
[ LinqToDB . Mapping . PrimaryKey , LinqToDB . Mapping . Identity ]
19
10
public int Id { get ; set ; }
20
11
[ LinqToDB . Mapping . Column , LinqToDB . Mapping . Nullable ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments