Mercurial > pub > bltoolkit
annotate UnitTests/Linq/Model/TestIdentity.cs @ 2:79a04c6442bf
file name case fix
| author | cin |
|---|---|
| date | Fri, 22 Aug 2014 13:41:57 +0400 |
| parents | f990fcb411a9 |
| 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 } |
