本文整理汇总了C#中Microsoft.OData.Edm.Library.EdmModel.FindOperations方法的典型用法代码示例。如果您正苦于以下问题:C# EdmModel.FindOperations方法的具体用法?C# EdmModel.FindOperations怎么用?C# EdmModel.FindOperations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.OData.Edm.Library.EdmModel
的用法示例。
在下文中一共展示了EdmModel.FindOperations方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddOperationWhileTypeHasSameName
public void AddOperationWhileTypeHasSameName()
{
EdmModel model = new EdmModel();
EdmComplexType c1 = new EdmComplexType("Ambiguous", "Binding");
IEdmOperation o1 = new EdmFunction("Ambiguous", "Binding", EdmCoreModel.Instance.GetInt16(true));
IEdmOperation o2 = new EdmFunction("Ambiguous", "Binding", EdmCoreModel.Instance.GetInt16(true));
IEdmOperation o3 = new EdmFunction("Ambiguous", "Binding", EdmCoreModel.Instance.GetInt16(true));
model.AddElement(o1);
Assert.AreEqual(1, model.FindOperations("Ambiguous.Binding").Count(), "First function was correctly added to operation group");
model.AddElement(o2);
Assert.AreEqual(2, model.FindOperations("Ambiguous.Binding").Count(), "Second function was correctly added to operation group");
model.AddElement(c1);
model.AddElement(o3);
Assert.AreEqual(3, model.FindOperations("Ambiguous.Binding").Count(), "Third function was correctly added to operation group");
Assert.AreEqual(c1, model.FindType("Ambiguous.Binding"), "Single item resolved");
}
示例2: AddCustomElementToAmodel
public void AddCustomElementToAmodel()
{
// Negative test
try
{
(new EdmModel()).AddElement(new AnEdmElement());
}
catch (InvalidCastException e)
{
Assert.IsTrue(e is InvalidCastException, "It should fail when casting to IEdmFuncition.");
}
// Positive test
var edmModel = new EdmModel();
edmModel.AddElement(new AnEdmOperationElement());
Assert.IsTrue(edmModel.FindOperations("MyNamespace.MyName").Any(), "Faild to find the newly added element.");
}