/// <inheritdoc />
        public bool GetNameFromMap(EntityMetadata entityMetadata, IServiceProvider serviceProvider, out string value)
        {
            Map map = _mapping.SingleOrDefault(m => m.Type == MapType.Entity && m.From.ToLowerInvariant() == entityMetadata.LogicalName);

            if (map != null)
            {
                value = map.To;
                return(true);
            }
            value = null;
            return(false);
        }