Skip to main content

GETTING PLURAL NAMES OF ENTITIES USING WEBAPI

 

Xrm.Utility.getEntityMetadata("account", "")
    .then(function (result) {
        console.log("Entity Set Name: " + result.EntitySetName);
    }, function (error) {
        console.log(error);
    });

Comments