Esempio n. 1
0
 public void Map(ITypeMappingConfigurator <IExposedInterface> map)
 {
     map
     .Named("ExposedInterface")
     .AsUriBaseType()
     .WithPluralName("ExposedInterfaces")
     .Include(x => x.PropertyFromInheritedInterface)
     .AsConcrete()
     .ConstructedUsing(c => new ExposedInterfaceInternalImplementation());
 }
Esempio n. 2
0
 public void Map(ITypeMappingConfigurator<IExposedInterface> map)
 {
     map
         .Named("ExposedInterface")
         .AsUriBaseType()
         .WithPluralName("ExposedInterfaces")
         .Include(x => x.PropertyFromInheritedInterface)
         .AsConcrete()
         .ConstructedUsing(c => new ExposedInterfaceInternalImplementation());
 }
Esempio n. 3
0
 public void Map(ITypeMappingConfigurator <RenamedThing> map)
 {
     map.Named("GotNewName").WithPluralName("ThingsWithNewName").ExposedAt("renamings");
 }
Esempio n. 4
0
 public void Map(ITypeMappingConfigurator<RenamedThing> map)
 {
     map.Named("GotNewName").WithPluralName("ThingsWithNewName").ExposedAt("renamings");
 }