diff --git a/src/Neuroglia.Data.Infrastructure.ResourceOriented.Abstractions/ResourceMetadata.cs b/src/Neuroglia.Data.Infrastructure.ResourceOriented.Abstractions/ResourceMetadata.cs index ac34a67e..174e714d 100644 --- a/src/Neuroglia.Data.Infrastructure.ResourceOriented.Abstractions/ResourceMetadata.cs +++ b/src/Neuroglia.Data.Infrastructure.ResourceOriented.Abstractions/ResourceMetadata.cs @@ -11,6 +11,8 @@ // See the License for the specific language governing permissions and // limitations under the License. +using Humanizer.Localisation; + namespace Neuroglia.Data.Infrastructure.ResourceOriented; /// @@ -92,6 +94,6 @@ public ResourceMetadata(string name, string? @namespace = null, IDictionary? ExtensionData { get; set; } /// - public override string? ToString() => string.IsNullOrWhiteSpace(this.Name) ? base.ToString() : string.IsNullOrWhiteSpace(this.Namespace) ? this.Name : $"{this.Namespace}.{this.Name}"; + public override string? ToString() => string.IsNullOrWhiteSpace(this.Namespace) ? this.Name : $"{this.Name}.{this.Namespace}"; }