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


C# EntitySet.AddMetadataProperties方法代码示例

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


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

示例1: Create

        /// <summary>
        ///     The factory method for constructing the EntitySet object.
        /// </summary>
        /// <param name="name">The name of the EntitySet.</param>
        /// <param name="schema">The db schema. Can be null.</param>
        /// <param name="table">The db table. Can be null.</param>
        /// <param name="definingQuery">
        ///     The provider specific query that should be used to retrieve data for this EntitySet. Can be null.
        /// </param>
        /// <param name="entityType">The entity type of the entities that this entity set type contains.</param>
        /// <param name="metadataProperties">
        ///     Metadata properties that will be added to the newly created EntitySet. Can be null.
        /// </param>
        /// <exception cref="System.ArgumentException">Thrown if the name argument is null or empty string.</exception>
        /// <notes>The newly created EntitySet will be read only.</notes>
        public static EntitySet Create(
            string name, string schema, string table, string definingQuery, EntityType entityType,
            IEnumerable<MetadataProperty> metadataProperties)
        {
            Check.NotEmpty(name, "name");
            Check.NotNull(entityType, "entityType");

            var entitySet = new EntitySet(name, schema, table, definingQuery, entityType);

            if (metadataProperties != null)
            {
                entitySet.AddMetadataProperties(metadataProperties.ToList());
            }

            entitySet.SetReadOnly();
            return entitySet;
        }
开发者ID:christiandpena,项目名称:entityframework,代码行数:32,代码来源:EntitySet.cs


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