TableExpression
Overview
This class is used internally by DA Linq to represent tables clauses in Linq queries to Data Abstract services. Normally, you won't have to create instances of this class manually, as this is done by Data Abstract's Linq infrastructure.
For internal use only.
Location
- Reference: RemObjects.DataAbstract.dll
- Namespace: RemObjects.DataAbstract.Linq
- Ancestry: AliasedExpression | TableExpression
Properties
Name
Returns the table name.
property Name: String read;
String Name { get; }
ReadOnly Property Name() As String
Instance Methods
constructor
constructor(type: Type; alias: TableAlias; name: String)
TableExpression(Type type, TableAlias alias, String name)
Sub New(type As Type, alias As TableAlias, name As String)
Parameters:
- type:
- alias:
- name:
ToString
Converts a table object to an SQL string.
method ToString: String
String ToString()
Function ToString() As String