The TableAttribute class specifies the name of the database table that this collection is associated with. This attribute must be specified for all DatabaseObjects*UsingAttributes classes.

Namespace: DatabaseObjects
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
public class TableAttribute : Attribute
Visual Basic
Public Class TableAttribute _
	Inherits Attribute
Visual C++
public ref class TableAttribute : public Attribute

Examples

CopyC#
<Table("Customers")>
Public Class Customers
    ...

Inheritance Hierarchy

System..::..Object
  System..::..Attribute
    DatabaseObjects..::..TableAttribute

See Also