DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
FunctionAttribute.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Mapping {
4  [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
5  public sealed class FunctionAttribute : Attribute {
6  public FunctionAttribute(string name) {
7  this.name = name;
8  }
9 
11  : this(null) {
12  }
13 
14  private string name;
15 
16  public string FunctionName {
17  get { return name; }
18  set { name = value; }
19  }
20  }
21 }