public static string GetIndexesTableNameFor(this IStructureSchema structureSchema, IndexesTypes type) { return string.Concat(StructureNameGenerator.Invoke(structureSchema), type.ToString()); }
public static string GetIndexesTableNameFor(this IStructureSchema structureSchema, IndexesTypes type) { return GenerateIndexesTableNameFor(structureSchema.Name, type); }
public static string GetIndexesTableNameFor(this IStructureSchema structureSchema, IndexesTypes type) { return(GenerateIndexesTableNameFor(structureSchema.Name, type)); }
public static string GenerateIndexesTableNameFor(string structureName, IndexesTypes type) { return string.Concat(DbSchemaNamingPolicy.GenerateFor(structureName), type.ToString()); }
public static string GenerateIndexesTableNameFor(string structureName, IndexesTypes type) { return(string.Concat(DbSchemaNamingPolicy.GenerateFor(structureName), type.ToString())); }