DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
NotNullAttribute.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Mapping {
4  [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
6  public NotNullAttribute()
7  : base(ColumnConstraints.NotNull) {
8  }
9  }
10 }