diff --git a/src/ReC.Infrastructure/Options/Shared/EntityBaseOptions.cs b/src/ReC.Infrastructure/Options/Shared/EntityBaseOptions.cs index e7c94c6..fa9d890 100644 --- a/src/ReC.Infrastructure/Options/Shared/EntityBaseOptions.cs +++ b/src/ReC.Infrastructure/Options/Shared/EntityBaseOptions.cs @@ -8,6 +8,8 @@ public record EntityBaseOptions() public IEnumerable PropertyNames => ColumnMappings.Select(col => col.Key); + public IEnumerable ColumnNames => ColumnMappings.Select(col => col.Value); + public void EnsureProperties(IEnumerable propertyNames) { var missingProperties = propertyNames.Except(PropertyNames).ToList();