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);
 }
Beispiel #3
0
 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());
 }
Beispiel #5
0
 public static string GenerateIndexesTableNameFor(string structureName, IndexesTypes type)
 {
     return(string.Concat(DbSchemaNamingPolicy.GenerateFor(structureName), type.ToString()));
 }