DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Mapping.PrimaryKeyAttribute Class Reference
Inheritance diagram for Deveel.Data.Mapping.PrimaryKeyAttribute:
Deveel.Data.Mapping.ColumnConstraintAttribute Deveel.Data.Mapping.INamedConstraint

Public Member Functions

 PrimaryKeyAttribute (string name)
 
 PrimaryKeyAttribute ()
 
- Public Member Functions inherited from Deveel.Data.Mapping.ColumnConstraintAttribute
 ColumnConstraintAttribute (ColumnConstraints constraints)
 

Properties

string ConstraintName [get, set]
 
- Properties inherited from Deveel.Data.Mapping.ColumnConstraintAttribute
ColumnConstraints Constraints [get, private set]
 
- Properties inherited from Deveel.Data.Mapping.INamedConstraint
string ConstraintName [get]
 

Detailed Description

Definition at line 5 of file PrimaryKeyAttribute.cs.

Constructor & Destructor Documentation

Deveel.Data.Mapping.PrimaryKeyAttribute.PrimaryKeyAttribute ( string  name)
inline

Definition at line 6 of file PrimaryKeyAttribute.cs.

7  : base(ColumnConstraints.PrimaryKey) {
8  this.ConstraintName = name;
9  }
Deveel.Data.Mapping.PrimaryKeyAttribute.PrimaryKeyAttribute ( )
inline

Definition at line 11 of file PrimaryKeyAttribute.cs.

12  : this(null) {
13  }

Property Documentation

string Deveel.Data.Mapping.PrimaryKeyAttribute.ConstraintName
getset

Definition at line 15 of file PrimaryKeyAttribute.cs.


The documentation for this class was generated from the following file: