Exemple #1
0
 /// <summary>
 /// Adds the keys that must be inherit always, even if "InheritTable" and "InheritColumns" are
 /// <see langword="false"/>.
 /// </summary>
 /// <param name="inheritKeys">The keys that must be inherit always.</param>
 /// <returns>The metadata processor.</returns>
 public DefaultMetadataProcessor InheritAlways(params string[] inheritKeys)
 {
     InheritAlwaysKeys.UnionWith(inheritKeys);
     return(this);
 }
Exemple #2
0
 /// <summary>
 /// Adds the keys that must be inherit always, even if "InheritTable" and "InheritColumns" are
 /// <see langword="false"/>.
 /// </summary>
 /// <param name="inheritKeys">The keys that must be inherit always.</param>
 /// <returns>The metadata processor.</returns>
 public DefaultMetadataProcessor InheritAlways(IEnumerable <string> inheritKeys)
 {
     InheritAlwaysKeys.UnionWith(inheritKeys);
     return(this);
 }