private static parseEntitySet()

in src/models/odata-metadata.ts [204:215]


    private static parseEntitySet(element: Element): IEntitySet {
        return {
            name: element.getAttribute('Name'),
            entityType: element.getAttribute('EntityType'),
            navigationPropertyBindings: this.parseCollection<INavigationPropertyBinding>(
                element,
                'NavigationPropertyBinding',
                (e) => this.parseNavigationPropertyBinding(e)
            ),
            annotations: this.parseCollection(element, 'Annotation', (e) => this.parseAnnotation(e)),
        };
    }