Mercurial > pub > bltoolkit
annotate UnitTests/Linq/Model/TestIdentity.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 using BLToolkit.DataAccess; | |
4 | |
5 namespace Data.Linq.Model | |
6 { | |
7 public class TestIdentity | |
8 { | |
9 [Identity, PrimaryKey] | |
10 //[SequenceName(ProviderName.PostgreSQL, "Seq")] | |
11 //[SequenceName(ProviderName.Firebird, "PersonID")] | |
12 //[SequenceName("ID")] | |
13 public int ID; | |
14 } | |
15 } |