Mercurial > pub > bltoolkit
annotate UnitTests/CS/JointureTests/Artist.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
rev | line source |
---|---|
0 | 1 using BLToolkit.DataAccess; |
2 using BLToolkit.Mapping; | |
3 | |
4 namespace UnitTests.CS.JointureTests | |
5 { | |
6 [TableName(Name = "ARTIST", Owner = Consts.Owner)] | |
7 public class Artist | |
8 { | |
9 [MapField("ID_ARTIST"), PrimaryKey, NonUpdatable] | |
10 public long Id { get; set; } | |
11 | |
12 [MapField("ARTIST")] | |
13 public string Name { get; set; } | |
14 } | |
15 } |