Mercurial > pub > bltoolkit
annotate HowTo/DataAccess/Person.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 using BLToolkit.DataAccess; | |
4 using BLToolkit.Mapping; | |
5 | |
6 namespace HowTo.DataAccess | |
7 { | |
8 public class Person | |
9 { | |
10 [MapField("PersonID"), PrimaryKey, NonUpdatable] | |
11 public int ID; | |
12 | |
13 public string LastName; | |
14 public string FirstName; | |
15 public string MiddleName; | |
16 public Gender Gender; | |
17 } | |
18 } |