Indicates whether given properties are generated by the database and, if
so, at what time(s) they are generated.
Namespace: NHibernate.Mapping
Assembly: NHibernate (in NHibernate)
Version: 1.2.0.4000
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration PropertyGeneration |
| C# |
|---|
public enum PropertyGeneration |
| Visual C++ |
|---|
public enum class PropertyGeneration |
Members
| Member | Description |
|---|---|
| Always |
Values for this property are generated by the database on both insert and update.
|
| Insert |
Values for this property are generated by the database on insert.
|
| Never |
Values for this property are never generated by the database.
|