NPersistence Reference Guide
Assembly: NPersistence (in NPersistence.dll) Version: 2.0.0.0 (2.0.0.0)
Provides for the specification of generation strategies for the
values of primary keys.
Namespace: NPersistenceThe GeneratedValue annotation may be applied to a primary key property or field of an entity or mapped superclass in conjunction with the Id annotation. The use of the GeneratedValue annotation is only required to be supported for simple primary keys. Use of the
GeneratedValue annotation is not supported for derived primary keys.
Examples
CopyC#
Example 1: [Id] [GeneratedValue(strategy=SEQUENCE, generator="CUST_SEQ")] [Column(name="CUST_ID")] public Long getId() { return id; } Example 2: [Id] [GeneratedValue(strategy=TABLE, generator="CUST_GEN")] [Column(name="CUST_ID")] Long id;
Assembly: NPersistence (in NPersistence.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
C# |
public sealed class GeneratedValue : Attribute
Members
All Members | Constructors | Fields |
Public Protected | Instance Static | Declared Inherited | XNA Framework Only .NET Compact Framework Only |
Member | Description | |
---|---|---|
GeneratedValue()()()() | Initializes a new instance of the GeneratedValue class | |
Generator | (Optional) The name of the primary key generator
to use as specified in the SequenceGenerator
or TableGenerator annotation.
Defaults to the id generator supplied by persistence provider.
| |
Strategy | (Optional) The primary key generation strategy
that the persistence provider must use to
generate the annotated entity primary key.
|
Inheritance Hierarchy
System..::..Object
System..::..Attribute
NPersistence..::..GeneratedValue
System..::..Attribute
NPersistence..::..GeneratedValue