Deveel.Data.TableContainerBase.TableContainerBase C# (CSharp) Method

TableContainerBase() protected method

Initializes a new instance of the TableContainerBase class wrapping it within the given transaction and using the given name of the table that contains the objects to resolve.
transaction
protected TableContainerBase ( ITransaction transaction, ObjectName tableName ) : System
transaction ITransaction The transaction that accesses the objects.
tableName ObjectName The name of the table that contains the objects to resolve.
return System
        protected TableContainerBase(ITransaction transaction, ObjectName tableName)
        {
            if (transaction == null)
                throw new ArgumentNullException("transaction");

            Transaction = transaction;
            TableName = tableName;
        }