예제 #1
0
		public static string GetIndexesTableNameFor(this IStructureSchema structureSchema, IndexesTypes type)
		{
			return string.Concat(StructureNameGenerator.Invoke(structureSchema), type.ToString());
		}
예제 #2
0
 public static string GetIndexesTableNameFor(this IStructureSchema structureSchema, IndexesTypes type)
 {
     return GenerateIndexesTableNameFor(structureSchema.Name, type);
 }
예제 #3
0
 public static string GetIndexesTableNameFor(this IStructureSchema structureSchema, IndexesTypes type)
 {
     return(GenerateIndexesTableNameFor(structureSchema.Name, type));
 }
예제 #4
0
 public static string GenerateIndexesTableNameFor(string structureName, IndexesTypes type)
 {
     return string.Concat(DbSchemaNamingPolicy.GenerateFor(structureName), type.ToString());
 }
예제 #5
0
 public static string GenerateIndexesTableNameFor(string structureName, IndexesTypes type)
 {
     return(string.Concat(DbSchemaNamingPolicy.GenerateFor(structureName), type.ToString()));
 }