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
TableAttribute.cs
Go to the documentation of this file.
1
using
System
;
2
3
namespace
Deveel
.Data.Mapping {
4
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
5
public
sealed
class
TableAttribute
: Attribute {
6
public
TableAttribute
(
string
name) {
7
this.TableName = name;
8
}
9
10
public
TableAttribute
()
11
: this(null) {
12
}
13
14
public
string
TableName {
get
; set; }
15
}
16
}
Deveel
System
Definition:
NonSerializedAttribute.cs:3
Deveel.Data.Mapping.TableAttribute.TableAttribute
TableAttribute()
Definition:
TableAttribute.cs:10
Deveel.Data.Mapping.TableAttribute.TableAttribute
TableAttribute(string name)
Definition:
TableAttribute.cs:6
Deveel.Data.Mapping.TableAttribute
Definition:
TableAttribute.cs:5
Generated by
1.8.10