本文整理汇总了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));
}
示例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);
}