DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
ColumnConstraintAttribute.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Mapping {
4  [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = true)]
5  public class ColumnConstraintAttribute : Attribute {
7  this.Constraints = constraints;
8  }
9 
10  public ColumnConstraints Constraints { get; private set; }
11  }
12 }
ColumnConstraintAttribute(ColumnConstraints constraints)