Sql.Net Class Library Documentation

SqlOmRenderer.QualifiedIdentifier Method 

Renders a fully qualified identifer.

protected virtual void QualifiedIdentifier(
   StringBuilder builder,
   string qnamespace,
   string name
);

Parameters

builder
Select statement string builder
qnamespace
Identifier namespace
name
Identifier name

Remarks

QualifiedIdentifier is usually to render database fields with optional table alias prefixes. name is a mandatory parameter while qnamespace is optional. If qnamespace is null, identifier will be rendered without a namespace (aka table alias)

See Also

SqlOmRenderer Class | Reeb.SqlOM.Render Namespace