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


C# ReflectedHttpActionDescriptor.GetEdmModel方法代码示例

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


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

示例1: GetEdmModelWorks

        public void GetEdmModelWorks(string methodName, Type entityClrType)
        {
            // Arrange
            HttpControllerDescriptor controllerDescriptor = new HttpControllerDescriptor(new HttpConfiguration(), "CustomerLowLevel", typeof(CustomerHighLevelController));
            HttpActionDescriptor actionDescriptor = new ReflectedHttpActionDescriptor(controllerDescriptor, typeof(CustomerHighLevelController).GetMethod(methodName));

            // Act
            IEdmModel model = actionDescriptor.GetEdmModel(entityClrType);

            // Assert
            Assert.NotNull(model);
            Assert.Equal(2, model.SchemaElements.Count());
            Assert.Equal(entityClrType.Name, model.SchemaElements.First().Name);
            Assert.Same(model, actionDescriptor.GetEdmModel(entityClrType));
        }
开发者ID:mikevpeters,项目名称:aspnetwebstack,代码行数:15,代码来源:HttpActionDescriptorExtensionTests.cs

示例2: GetEdmModelForMultipleTypesWorks

        public void GetEdmModelForMultipleTypesWorks()
        {
            // Arrange
            HttpControllerDescriptor controllerDescriptor = new HttpControllerDescriptor(new HttpConfiguration(), "CustomerLowLevel", typeof(CustomerHighLevelController));
            HttpActionDescriptor actionDescriptor = new ReflectedHttpActionDescriptor(controllerDescriptor, typeof(CustomerHighLevelController).GetMethod("GetObject"));

            Type type1 = typeof(Customer);
            Type type2 = typeof(BellevueCustomer);

            // Act
            IEdmModel model1 = actionDescriptor.GetEdmModel(type1);
            IEdmModel model2 = actionDescriptor.GetEdmModel(type2);

            // Assert
            Assert.NotSame(model1, model2);
            Assert.NotNull(model1);
            Assert.Equal(2, model1.SchemaElements.Count());
            Assert.Equal(type1.Name, model1.SchemaElements.First().Name);

            Assert.NotNull(model2);
            Assert.Equal(2, model2.SchemaElements.Count());
            Assert.Equal(type2.Name, model2.SchemaElements.First().Name);
        }
开发者ID:mikevpeters,项目名称:aspnetwebstack,代码行数:23,代码来源:HttpActionDescriptorExtensionTests.cs


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