Deveel.Data.Sql.Tables.UserContextTable.ResolveRows C# (CSharp) Method

ResolveRows() protected method

protected ResolveRows ( int column, IEnumerable rowSet, ITable ancestor ) : IEnumerable
column int
rowSet IEnumerable
ancestor ITable
return IEnumerable
        protected override IEnumerable<int> ResolveRows(int column, IEnumerable<int> rowSet, ITable ancestor)
        {
            if (!TableName.Equals(ancestor.TableInfo.TableName) &&
                !ancestor.TableInfo.TableName.Equals(Table.TableInfo.TableName))
                throw new Exception("Method routed to incorrect table ancestor.");

            return rowSet;
        }