EasyObjects.NET Programmers Reference

DynamicQuery.AliasFormat Property

When implemented by a class, gets the string format used to delimit aliases for the database.

protected virtual string AliasFormat {get;}

Property Value

the string format used to delimit aliases for the database.

Example

// SQL Server delimits aliases with single quotes ' '.
protected override string AliasFormat
{
    get { return "'{0}'"; }
}

See Also

DynamicQuery Class | NCI.EasyObjects Namespace