Last active
August 29, 2015 14:03
-
-
Save ODataTeam/df968b4edd24088b0678 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class ExtensionMethods | |
{ | |
… | |
public static IEnumerable<IEdmOperation> FindBoundOperations(this IEdmModel model, IEdmType bindingType); | |
public static IEnumerable<IEdmOperation> FindBoundOperations(this IEdmModel model, string qualifiedName, IEdmType bindingType); | |
public static IEdmEntityContainer FindEntityContainer(this IEdmModel model, string qualifiedName); | |
public static IEnumerable<IEdmOperation> FindOperations(this IEdmModel model, string qualifiedName); | |
public static IEdmSchemaType FindType(this IEdmModel model, string qualifiedName); | |
public static IEdmValueTerm FindValueTerm(this IEdmModel model, string qualifiedName); | |
… | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment