I have the following:
if (model.PartitionKey.Substring(2, 2) == \"05\" || model.PartitionKey.Substring(2, 2) == \"06\")
I have more like t
if (new []{"05", "06"}.Contains(model.PartitionKey.Substring(2, 2))
the syntax might be far off, corrections are welcome :)
Edit: new []
new []