annotate Source/DataAccess/IdentityAttribute.cs @ 1:8f65451dc28f
Исправлена проблема с фабрикой и выборкой нескольких объектов в linq выражении
author |
cin |
date |
Fri, 28 Mar 2014 01:04:56 +0400 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 using System;
|
|
2
|
|
3 namespace BLToolkit.DataAccess
|
|
4 {
|
|
5 [Serializable]
|
|
6 [AttributeUsage(
|
|
7 AttributeTargets.Field | AttributeTargets.Property |
|
|
8 AttributeTargets.Class | AttributeTargets.Interface,
|
|
9 AllowMultiple = true)]
|
|
10 public class IdentityAttribute : NonUpdatableAttribute
|
|
11 {
|
|
12 public IdentityAttribute() : base(true, true, true)
|
|
13 {
|
|
14 }
|
|
15 }
|
|
16 }
|