예제 #1
0
 /// <summary>
 /// Adds a mapping modification that can be used to modify the mapping before the XML document is constructed.
 /// </summary>
 /// <param name="modification">The mapping modification</param>
 public FluentMappingSource AddModification(IMappingModification modification)
 {
     modification.Guard("Cannot pass null to 'AddModification'");
     modifications.Add(modification);
     return(this);
 }