当前位置: 首页>>代码示例>>C#>>正文


C# Table.Union方法代码示例

本文整理汇总了C#中Table.Union方法的典型用法代码示例。如果您正苦于以下问题:C# Table.Union方法的具体用法?C# Table.Union怎么用?C# Table.Union使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Table的用法示例。


在下文中一共展示了Table.Union方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Render

        public DataSet Render()
        {

            // If the header cache is empty, then just return the rendered group by set //
            if (this._Headers.Count == 0)
                return this._Cache.ToFinal();

            // Dump the current set //
            Header h = KeyValueSet.Save(this._TempDir, this._Cache);
            this._Headers.Add(h);

            // Create a table //
            Table t = new Table(this._TempDir, TableHeader.TempName(), this._Cache.OutputSchema);

            // Otherwise, we need to union all the headers //
            for (int i = 0; i < this._Headers.Count - 1; i++)
            {

                KeyValueSet gbs1 = KeyValueSet.Open(this._Headers[i], this._Cache.BaseMappers, this._Cache.BaseReducers);

                for (int j = i + 1; j < this._Headers.Count; j++)
                {

                    KeyValueSet gbs2 = KeyValueSet.Open(this._Headers[j], this._Cache.BaseMappers, this._Cache.BaseReducers);
                    KeyValueSet.Union(gbs1, gbs2);
                    KeyValueSet.Save(this._Headers[j], gbs2);

                }

                // Union in the set //
                t.Union(gbs1.ToFinal());

            }

            // Drop all headers //
            DataSetManager.DropRecordSet(this._Headers);

            return t;

        }
开发者ID:pwdlugosz,项目名称:Horse,代码行数:40,代码来源:AggregateStructure.cs

示例2: Invoke

        public override void Invoke()
        {

            // Get the chunk //
            string c_name = this._Parameters["@CHUNK"].Expression.Evaluate().valueSTRING;
            RecordSet c = this._Home.ChunkHeap[c_name];

            // Get the table //
            string db_name = this._Parameters["@ALIAS"].Expression.Evaluate().valueSTRING;
            string t_name = this._Parameters["@NAME"].Expression.Evaluate().valueSTRING;
            Table t = new Table(this.Home.Connections[db_name], t_name, c.Columns, c.MaxRecords);

            // Union //
            t.Union(c);
            BinarySerializer.Flush(t);

        }
开发者ID:pwdlugosz,项目名称:Horse,代码行数:17,代码来源:SystemProcedures.cs


注:本文中的Table.Union方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。