Mercurial > pub > bltoolkit
annotate Source/DataAccess/NoMapAttribute.cs @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author | cin |
---|---|
date | Fri, 22 Aug 2014 17:34:46 +0400 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 namespace BLToolkit.DataAccess | |
4 { | |
5 [AttributeUsage(AttributeTargets.Parameter)] | |
6 public class NoMapAttribute : Attribute | |
7 { | |
8 public NoMapAttribute() | |
9 { | |
10 _noMap = true; | |
11 } | |
12 | |
13 public NoMapAttribute(bool noMap) | |
14 { | |
15 _noMap = noMap; | |
16 } | |
17 | |
18 private bool _noMap; | |
19 public bool NoMap | |
20 { | |
21 get { return _noMap; } | |
22 set { _noMap = value; } | |
23 } | |
24 } | |
25 } | |
26 |