forked from 47-studio-org/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBaseDbApi.cs
53 lines (41 loc) · 990 Bytes
/
BaseDbApi.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using AutoMapper;
using AutoMapper.Data;
using PostSharp.Aspects;
using PostSharp.Extensibility;
using System;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
namespace PostSharp.Samples.StoredProcedure
{
[StoredProcedure(AttributeInheritance = MulticastInheritance.Multicast)]
internal abstract class BaseDbApi
{
protected BaseDbApi( SqlConnection connection, SqlTransaction transaction = null )
{
this.Connection = connection;
this.Transaction = transaction;
var mapperConfig = new MapperConfiguration(cfg =>
{
cfg.AddDataReaderMapping();
cfg.CreateMap<IDataRecord, Speaker>();
});
this.Mapper = mapperConfig.CreateMapper();
}
public SqlConnection Connection
{
get;
}
public SqlTransaction Transaction
{
get;
}
public IMapper Mapper
{
get;
}
}
}