protected override void OnCreatingSchemaInfo(SchemaMetadataBuilder <IgnoredPropertyTest> builder)
 {
     builder.Property(t => t.IgnoredProperty).Ignore();
 }
 protected override void OnCreatingSchemaInfo(SchemaMetadataBuilder <PropertyNotIndexedTest> builder)
 {
     builder.Property(t => t.Text).NotIndexed();
 }
 protected override void OnCreatingSchemaInfo(SchemaMetadataBuilder <CustomWeightTest> builder)
 {
     builder.Property(t => t.TextPropertyWithCustomWeight).WithWeight(5.0);
 }
 protected override void OnCreatingSchemaInfo(SchemaMetadataBuilder <SortableNumericPropertyTest> builder)
 {
     builder.Property(t => t.SortableNumeric).AsSortable();
 }
 protected override void OnCreatingSchemaInfo(SchemaMetadataBuilder <NoStemmingTest> builder)
 {
     builder.Property(t => t.NotStemmedText).NotStemmed();
 }