Esempio n. 1
0
 private void ValidateRowKey(RowKeyKind kind)
 {
     if (_map.RowKey != null)
     {
         throw new Exception($"Rowkey already set, you are trying to re-set it as {kind} !");
     }
 }
Esempio n. 2
0
 internal RowKey(RowKeyKind kind, IList <RowKeyMap> components, string separator = "-")
 {
     RowKeyKind = kind;
     Separator  = separator;
     Components = components;
 }