DeveelDB
20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
deveeldb.git
src
deveeldb-linq
Deveel.Data.Mapping
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
10
public
FunctionAttribute
()
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
}
Deveel.Data.Mapping.FunctionAttribute.FunctionAttribute
FunctionAttribute(string name)
Definition:
FunctionAttribute.cs:6
Deveel
System
Definition:
NonSerializedAttribute.cs:3
Deveel.Data.Mapping.FunctionAttribute.FunctionAttribute
FunctionAttribute()
Definition:
FunctionAttribute.cs:10
Deveel.Data.Mapping.FunctionAttribute
Definition:
FunctionAttribute.cs:5
Deveel.Data.Mapping.FunctionAttribute.name
string name
Definition:
FunctionAttribute.cs:14
Generated by
1.8.10