DbExpressions.DbTableExpression.DbTableExpression C# (CSharp) Method

DbTableExpression() private method

Initializes a new instance of the DbTableExpression class.
private DbTableExpression ( string tableName )
tableName string The name of the table.
        internal DbTableExpression(string tableName)
        {
            TableName = tableName;
        }
DbTableExpression