Skip to content

Commit 90f3866

Browse files
author
Thomas Mahlberg
committed
fix typo
1 parent 10af797 commit 90f3866

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

KustoSchemaTools/Model/MaterializedView.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ public List<DatabaseScriptContainer> CreateScripts(string name, bool isNew)
3030
var asyncSetup = isNew && Backfill == true;
3131

3232

33-
var excludedProperies = new HashSet<string>(["Query", "Source", "Kind", "RetentionAndCachePolicy", "RowLevelSecurity", "Policies"]);
33+
var excludedProperties = new HashSet<string>(["Query", "Source", "Kind", "RetentionAndCachePolicy", "RowLevelSecurity", "Policies"]);
3434
if (!asyncSetup)
3535
{
36-
excludedProperies.Add("EffectiveDateTime");
37-
excludedProperies.Add("Backfill");
36+
excludedProperties.Add("EffectiveDateTime");
37+
excludedProperties.Add("Backfill");
3838
}
3939

4040
var scripts = new List<DatabaseScriptContainer>();
4141
var properties = string.Join(", ", GetType().GetProperties()
42-
.Where(p => p.GetValue(this) != null && excludedProperies.Contains(p.Name) == false)
42+
.Where(p => p.GetValue(this) != null && excludedProperties.Contains(p.Name) == false)
4343
.Select(p => new {Name = p.Name, Value = p.GetValue(this) })
4444
.Where(p => !string.IsNullOrWhiteSpace(p.Value?.ToString()))
4545
.Select(p => $"{p.Name}=```{p.Value}```"));

0 commit comments

Comments
 (0)