annotate Source/DataAccess/IdentityAttribute.cs @ 6:11b6da379593
Исправлена странная ошибка при использовании OfType<...>().Where(...)
author |
cin |
date |
Mon, 05 Dec 2016 05:50:52 +0300 |
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 }
|