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


C# IGrouping.All方法代码示例

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


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

示例1: ValidateOperationMetadataGroup

        /// <summary>
        /// Validates a group of operations with the same context Uri.
        /// </summary>
        /// <param name="operations">Operations to validate.</param>
        private void ValidateOperationMetadataGroup(IGrouping<string, ODataOperation> operations)
        {
            Debug.Assert(operations != null, "operations must not be null.");
            Debug.Assert(operations.Any(), "operations.Any()");
            Debug.Assert(operations.All(o => this.GetOperationMetadataString(o) == operations.Key), "The operations should be grouped by their metadata.");

            if (operations.Count() > 1 && operations.Any(o => o.Target == null))
            {
                throw new ODataException(OData.Core.Strings.ODataJsonLightEntryAndFeedSerializer_ActionsAndFunctionsGroupMustSpecifyTarget(operations.Key));
            }

            foreach (IGrouping<string, ODataOperation> operationsByTarget in operations.GroupBy(this.GetOperationTargetUriString))
            {
                if (operationsByTarget.Count() > 1)
                {
                    throw new ODataException(OData.Core.Strings.ODataJsonLightEntryAndFeedSerializer_ActionsAndFunctionsGroupMustNotHaveDuplicateTarget(operations.Key, operationsByTarget.Key));
                }
            }
        }
开发者ID:TomDu,项目名称:odata.net,代码行数:23,代码来源:ODataJsonLightEntryAndFeedSerializer.cs

示例2: GetCss

 private IEnumerable<string> GetCss(IGrouping<int, ShoppingListItemModel> lookup)
 {
     if (lookup.All(x => x.Css.Length > 0)) yield return "nothing-needed";
     if (lookup.All(x => x.Css == "zero")) yield return "zero";
     if (lookup.All(x => x.Css == "picked")) yield return "picked";
 }
开发者ID:rtennys,项目名称:Momo,代码行数:6,代码来源:ShoppingListsModels.cs


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