From 5b83bf7ae250911e815e57998e81d039b5eb52b4 Mon Sep 17 00:00:00 2001 From: chaowlert Date: Sun, 28 May 2017 14:47:33 +0700 Subject: [PATCH 1/2] Update README.md --- README.md | 490 +----------------------------------------------------- 1 file changed, 8 insertions(+), 482 deletions(-) diff --git a/README.md b/README.md index 51771f34..ece95b12 100644 --- a/README.md +++ b/README.md @@ -1,90 +1,30 @@ -![Mapster Icon](http://www.fancyicons.com/free-icons/103/pretty-office-5/png/128/order_128.png) +![Mapster Icon](https://cloud.githubusercontent.com/assets/5763993/26522718/d16f3e42-4330-11e7-9b78-f8c7402624e7.png) ## Mapster - The Mapper of Your Domain -[![Build status](https://ci.appveyor.com/api/projects/status/krpp0nhspmklom1d?svg=true)](https://ci.appveyor.com/project/eswann/mapster) - -### Basic usage -``` -var result = original.Adapt(); -``` ### Get it ``` PM> Install-Package Mapster ``` -### Get started - -[Mapping](#Mapping) -- [Mapping to a new object](#MappingNew) -- [Mapping to an existing object](#MappingToTarget) -- [Queryable Extensions](#Projection) -- [Mapper instance](#UnitTest) - -[Conversion](#Conversion) -- [Conversion of immutable types](#ConversionImmutable) -- [Conversion from/to enum](#ConversionEnum) -- [Mapping POCO](#ConversionPOCO) -- [Mapping Lists](#ConversionList) -- [Conversion from/to Dictionary](#ConversionDictionary) -- [Conversion from/to Record Types](#ConversionRecordType) - -[Settings](#Settings) -- [Settings per type](#SettingsPerType) -- [Global Settings](#SettingsGlobal) -- [Settings inheritance](#SettingsInheritance) -- [Rule based settings](#SettingsRuleBased) -- [Setting instance](#SettingsOverload) -- [Assembly scanning](#AssemblyScanning) - -[Basic Customization](#Basic) -- [Ignore properties & attributes](#Ignore) -- [Custom Property Mapping](#Map) -- [Flexible Name Mapping](#NameMatchingStrategy) -- [Merge Objects](#Merge) -- [Shallow Copy](#ShallowCopy) -- [Preserve reference (preventing circular reference stackoverflow)](#PreserveReference) - -[Advance Customization](#Advance) -- [Custom instance creation](#ConstructUsing) -- [After mapping action](#AfterMapping) -- [Passing runtime value](#RuntimeValue) -- [Type-Specific Destination Transforms](#Transform) -- [Custom Type Resolvers](#ConverterFactory) - -[Validation](#Validate) -- [Explicit Mapping](#ExplicitMapping) -- [Checking Destination Member](#CheckDestinationMember) -- [Validating Mappings](#Compile) -#### Mapping -##### Mapping to a new object +### Basic usage +#### Mapping to a new object Mapster creates the destination object and maps values to it. - var destObject = TypeAdapter.Adapt(sourceObject); - -or just - - var destObject = TypeAdapter.Adapt(sourceObject); - -or using extension methods - var destObject = sourceObject.Adapt(); -##### Mapping to an existing object -You make the object, Mapster maps to the object. - - TDestination destObject = new TDestination(); - destObject = TypeAdapter.Adapt(sourceObject, destObject); +#### Mapping to an existing object -or using extension methods +You make the object, Mapster maps to the object. TDestination destObject = new TDestination(); destObject = sourceObject.Adapt(destObject); -##### Queryable Extensions +#### Queryable Extensions + Mapster also provides extensions to map queryables. - using(MyDbContext context = new MyDbContext()) + using (MyDbContext context = new MyDbContext()) { // Build a Select Expression from DTO var destinations = context.Sources.ProjectToType().ToList(); @@ -98,417 +38,3 @@ Mapster also provides extensions to map queryables. }) .ToList(); } - -##### Mapper Instance -In some cases, you need an instance of a mapper (or a factory function) to pass into a DI container. Mapster has -the IAdapter and Adapter to fill this need: - - IAdapter adapter = new Adapter(); - -And usage is the same as with the static methods. - - var result = adapter.Adapt(source); - -#### Conversion -Mapster can map nearly all kind of objects. Here are some details. - -##### Conversion of immutable types -Converting between primitive types (ie. int, string, bool, double, decimal) is supported, including when those types are nullable. For all other types, if you can cast types in c#, you can also cast in Mapster. - - var i = TypeAdapter.Adapt("123"); //123 - -##### Conversion from/to enum -Mapster maps enums to numerics automatically, but it also maps strings to and from enums automatically in a fast manner. -The default Enum.ToString() in .Net is quite slow. The implementation in Mapster is double the speed. -Likewise, a fast conversion from strings to enums is also included. If the string is null or empty, -the enum will initialize to the first enum value. - -In Mapster 2.0, flagged enums are also supported. - - var e = TypeAdapter.Adapt("Read, Write, Delete"); - //FileShare.Read | FileShare.Write | FileShare.Delete - -##### Mapping POCO -Mapster can map 2 different POCO types using the following rules -- Source and destination property names are the same. Ex: `dest.Name = src.Name` -- Source has get method. Ex: `dest.Name = src.GetName()` -- Source property has child object which can flatten to destination. Ex: `dest.ContactName = src.Contact.Name` or `dest.Contact_Name = src.Contact.Name` - -In Mapster 2.0, POCO structs are also supported. - - class Staff { - public string Name { get; set; } - public int GetAge() { return (DateTime.Now - this.BirthDate).TotalDays / 365.25; } - public Staff Supervisor { get; set; } - ... - } - - struct StaffDto { - public string Name { get; set; } - public int Age { get; set; } - public string SupervisorName { get; set; } - } - - var dto = TypeAdapter.Adapt(staff); - //dto.Name = staff.Name, dto.Age = staff.GetAge(), dto.SupervisorName = staff.Supervisor.Name - -##### Mapping Lists -This includes mapping among lists, arrays, collections, dictionary including various interfaces: IList, ICollection, IEnumerable etc... - - var target = TypeAdapter.Adapt, IEnumerable>(list); - -##### Conversion from/to Dictionary -Mapster supports conversion from object to dictionary and dictionary to object. - -``` -var point = new { X = 2, Y = 3 }; -var dict = src.Adapt>(); -dict["Y"].ShouldBe(3); -``` - -##### Conversion from/to Record Types -Record types are types with no setter, all parameters will be initiated from constructor. - -``` -class Person { - public string Name { get; } - public int Age { get; } - - public Person(string name, int age) { - this.Name = name; - this.Age = age; - } -} - -var src = new { Name = "Mapster", Age = 3 }; -var target = src.Adapt(); -``` - -There is limitation on record type mapping. Record type must not have setter and have only one non-empty constructor. And all parameter names must match with properties. - -#### Settings -##### Settings per type -You can easily create settings for a type mapping by using: `TypeAdapterConfig.NewConfig()`. -When `NewConfig` is called, any previous configuration for this particular TSource => TDestination mapping is dropped. - - TypeAdapterConfig - .NewConfig() - .Ignore(dest => dest.Age) - .Map(dest => dest.FullName, - src => string.Format("{0} {1}", src.FirstName, src.LastName)); - -As an alternative to `NewConfig`, you can use `ForType` in the same way: - - TypeAdapterConfig - .ForType() - .Ignore(dest => dest.Age) - .Map(dest => dest.FullName, - src => string.Format("{0} {1}", src.FirstName, src.LastName)); - -`ForType` differs in that it will create a new mapping if one doesn't exist, but if the specified TSource => TDestination -mapping does already exist, it will enhance the existing mapping instead of dropping and replacing it. - -##### Global Settings -Use global settings to apply policies to all mappings. - - TypeAdapterConfig.GlobalSettings.Default.PreserveReference(true); - -Then for individual type mappings, you can easily override the global setting(s). - - TypeAdapterConfig.NewConfig().PreserveReference(false); - -##### Settings inheritance -Type mappings will automatically inherit for source types. Ie. if you set up following config. - - TypeAdapterConfig.NewConfig() - .Map(dest => dest.Name, src => src.Name + "_Suffix"); - -A derived type of `SimplePoco` will automatically apply the base mapping config. - - var dest = TypeAdapter.Adapt(src); //dest.Name = src.Name + "_Suffix" - -If you don't wish a derived type to use the base mapping, just define `NoInherit` for that type. - - TypeAdapterConfig.NewConfig().NoInherit(true); - - //or at the global level - TypeAdapterConfig.GlobalSettings.Default.NoInherit(true); - -And by default, Mapster will not inherit destination type mappings. You can turn on by `AllowImplicitDestinationInheritance`. - - TypeAdapterConfig.GlobalSettings.AllowImplicitDestinationInheritance = true; - -Finally, Mapster also provides methods to inherit explicitly. - - TypeAdapterConfig.NewConfig() - .Inherits(); - -##### Rule based settings -To set the setting at a more granular level. You can use the `When` method in global settings. -In the example below, when any source type and destination type are the same, we will not the copy the `Id` property. - - TypeAdapterConfig.GlobalSettings.When((srcType, destType, mapType) => srcType == destType) - .Ignore("Id"); - -In this example, the config would only apply to Query Expressions (projections). - - TypeAdapterConfig.GlobalSettings.When((srcType, destType, mapType) => mapType == MapType.Projection) - .IgnoreAttribute(typeof(NotMapAttribute)); - -##### Setting instance -You may wish to have different settings in different scenarios. -If you would not like to apply setting at a static level, Mapster also provides setting instance configurations. - - var config = new TypeAdapterConfig(); - config.Default.Ignore("Id"); - -For instance configurations, you can use the same `NewConfig` and `ForType` methods that are used at the global level with -the same behavior: `NewConfig` drops any existing configuration and `ForType` creates or enhances a configuration. - - config.NewConfig() - .Map(dest => dest.FullName, - src => string.Format("{0} {1}", src.FirstName, src.LastName)); - - config.ForType() - .Map(dest => dest.FullName, - src => string.Format("{0} {1}", src.FirstName, src.LastName)); - -You can apply a specific config instance by passing it to the `Adapt` method. (NOTE: please reuse your config instance to prevent recompilation) - - var result = TypeAdapter.Adapt(src, config); - -Or to an Adapter instance. - - var adapter = new Adapter(config); - var result = adapter.Adapt(src); - -If you would like to create configuration instance from existing configuration, you can use `Clone` method. For example, if you would like to clone from global setting. - - var newConfig = TypeAdapterConfig.GlobalSettings.Clone(); - -Or clone from existing configuration instance - - var newConfig = oldConfig.Clone(); - -##### Assembly scanning -It's relatively common to have mapping configurations spread across a number of different assemblies. -Perhaps your domain assembly has some rules to map to domain objects and your web api has some specific rules to map to your -api contracts. In these cases, it can be helpful to allow assemblies to be scanned for these rules so you have some basic -method of organizing your rules and not forgetting to have the registration code called. In some cases, it may even be necessary to -register the assemblies in a particular order, so that some rules override others. Assembly scanning helps with this. -Assembly scanning is simple, just create any number of IRegister implementations in your assembly, then call `Scan` from your TypeAdapterConfig class: - - public class MyRegister : IRegister - { - public void Register(TypeAdapterConfig config){ - config.NewConfig(); - - //OR to create or enhance an existing configuration - - config.ForType(); - } - } - -To scan and register at the Global level: - - TypeAdapterConfig.GlobalSettings.Scan(assembly1, assembly2, assemblyN) - -For a specific config instance: - - var config = new TypeAdapterConfig(); - config.Scan(assembly1, assembly2, assemblyN); - -If you use other assembly scanning library such as MEF, you can easily apply registration with `Apply` method. - - var registers = container.GetExports(); - config.Apply(registers); - -#### Basic Customization -When the default convention mappings aren't enough to do the job, you can specify complex source mappings. - -##### Ignore Members & Attributes -Mapster will automatically map properties with the same names. You can ignore members by using the `Ignore` method. - - TypeAdapterConfig - .NewConfig() - .Ignore(dest => dest.Id); - -You can ignore members conditionally, with condition based on source or target. When the condition is met, mapping of the property -will be skipped altogether. This is the difference from custom `Map` with condition, where destination is set to `null` -when condition is met. - - TypeAdapterConfig - .NewConfig() - .IgnoreIf((src, dest) => !string.IsNullOrEmpty(dest.Name), dest => dest.Name); - -You can ignore members annotated with specific attributes by using the `IgnoreAttribute` method. - - TypeAdapterConfig - .NewConfig() - .IgnoreAttribute(typeof(JsonIgnoreAttribute)); - -##### Custom property mapping -You can customize how Mapster maps values to a property. - - TypeAdapterConfig - .NewConfig() - .Map(dest => dest.FullName, - src => string.Format("{0} {1}", src.FirstName, src.LastName)); - -The Map configuration can accept a third parameter that provides a condition based on the source. -If the condition is not met, Mapster will retry with next conditions. Default condition should be added at the end without specifying condition. If you do not specify default condition, null or default value will be assigned. - - TypeAdapterConfig - .NewConfig() - .Map(dest => dest.FullName, src => "Sig. " + src.FullName, srcCond => srcCond.Country == "Italy") - .Map(dest => dest.FullName, src => "Sr. " + src.FullName, srcCond => srcCond.Country == "Spain") - .Map(dest => dest.FullName, src => "Mr. " + src.FullName); - -In Mapster 2.0, you can even map when source and destination property types are different. - - TypeAdapterConfig - .NewConfig() - .Map(dest => dest.Gender, //Genders.Male or Genders.Female - src => src.GenderString); //"Male" or "Female" - -##### Flexible name mapping -By default, Mapster will map property with case sensitive name. You can adjust to flexible name mapping by setting `NameMatchingStrategy.Flexible` to `NameMatchingStrategy` method. This setting will allow matching between `PascalCase`, `camelCase`, `lower_case`, and `UPPER_CASE`. - -This setting will apply flexible naming globally. - -``` -TypeAdapterConfig.GlobalSettings.Default.NameMatchingStrategy(NameMatchingStrategy.Flexible); -``` - -or by specific type mapping. - -``` -TypeAdapterConfig.NewConfig().NameMatchingStrategy(NameMatchingStrategy.Flexible); -``` - -##### Merge object -By default, Mapster will map all properties, even source properties containing null values. -You can copy only properties that have values by using `IgnoreNullValues` method. - - TypeAdapterConfig - .NewConfig() - .IgnoreNullValues(true); - -##### Shallow copy -By default, Mapster will recursively map nested objects. You can do shallow copying by setting `ShallowCopyForSameType` to `true`. - - TypeAdapterConfig - .NewConfig() - .ShallowCopyForSameType(true); - -##### Preserve reference (preventing circular reference stackoverflow) -When mapping objects with circular references, a stackoverflow exception will result. -This is because Mapster will get stuck in a loop tring to recursively map the circular reference. -If you would like to map circular references or preserve references (such as 2 properties pointing to the same object), you can do it by setting `PreserveReference` to `true` - - TypeAdapterConfig - .NewConfig() - .PreserveReference(true); - -NOTE: Projection doesn't support circular reference. To overcome, you might use `Adapt` instead of `ProjectToType`. - - TypeAdaptConfig.GlobalSettings.Default.PreserveReference(true); - var students = context.Student.Include(p => p.Schools).Adapt>(); - -#### Advance Customization -##### Custom Destination Object Creation -You can provide a function call to create your destination objects instead of using the default object creation -(which expects an empty constructor). To do so, use the `ConstructUsing` method when configuring. This method expects -a function that will provide the destination instance. You can call your own constructor, a factory method, -or anything else that provides an object of the expected type. - - //Example using a non-default constructor - TypeAdapterConfig.NewConfig() - .ConstructUsing(src => new TDestination(src.Id, src.Name)); - - //Example using an object initializer - TypeAdapterConfig.NewConfig() - .ConstructUsing(src => new TDestination{Unmapped = "unmapped"}); - -##### After mapping action -You can perform actions after each mapping by using `AfterMapping` method. For instance, you might would like to validate object after each mapping. - -``` -TypeAdapterConfig.ForType().AfterMapping((src, dest) => dest.Validate()); -``` - -Or you can set for all mappings to types which implemented a specific interface by using `ForDestinationType` method. - -``` -TypeAdapterConfig.GlobalSettings.ForDestinationType() - .AfterMapping(dest => dest.Validate()); -``` - -##### Passing runtime value -In some cases, you might would like to pass runtime values (ie, current user). On configuration, we can receive run-time value by `MapContext.Current.Parameters`. - -``` -TypeAdapterConfig.NewConfig() - .Map(dest => dest.CreatedBy, - src => MapContext.Current.Parameters["user"]); -``` - -To pass run-time value, we need to use `BuildAdapter` method, and call `AddParameters` method to add each parameter. - -``` -var dto = poco.BuildAdapter() - .AddParameters("user", this.User.Identity.Name) - .AdaptToType(); -``` - -##### Type-Specific Destination Transforms -This allows transforms for all items of a type, such as trimming all strings. But really any operation -can be performed on the destination value before assignment. - - //Global - TypeAdapterConfig.GlobalSettings.Default.AddDestinationTransforms((string x) => x.Trim()); - - //Per mapping configuration - TypeAdapterConfig.NewConfig() - .AddDestinationTransforms((string x) => x.Trim()); - -##### Custom Type Resolvers -In some cases, you may want to have complete control over how an object is mapped. You can register specific transformations using the `MapWith` method. - - //Example of transforming string to char[]. - TypeAdapterConfig.NewConfig() - .MapWith(str => str.ToCharArray()); - -`MapWith` also useful if you would like to copy instance rather than deep copy the object, for instance, `JObject` or `DbGeography`, these should treat as primitive types rather than POCO. - - TypeAdapterConfig.NewConfig() - .MapWith(json => json); - -#### Validation -To validate your mapping in unit tests and in order to help with "Fail Fast" situations, the following strict mapping modes have been added. - -##### Explicit Mapping -Forcing all classes to be explicitly mapped: - - //Default is "false" - TypeAdapterConfig.GlobalSettings.RequireExplicitMapping = true; - //This means you have to have an explicit configuration for each class, even if it's just: - TypeAdapterConfig.NewConfig(); - -##### Checking Destination Member -Forcing all destination properties to have a corresponding source member or explicit mapping/ignore: - - //Default is "false" - TypeAdapterConfig.GlobalSettings.RequireDestinationMemberSource = true; - -##### Validating Mappings -Both a specific TypeAdapterConfig or all current configurations can be validated. In addition, if Explicit Mappings (above) are enabled, it will also include errors for classes that are not registered at all with the mapper. - - //Validate a specific config - var config = TypeAdapterConfig.NewConfig(); - config.Compile(); - - //Validate globally - TypeAdapterConfig.NewConfig(); - TypeAdapterConfig.NewConfig(); - TypeAdapterConfig.GlobalSettings.Compile(); From 65bff5607b62f19434d989bfa8bd461e7c2c1e1e Mon Sep 17 00:00:00 2001 From: chaowlert Date: Sun, 28 May 2017 15:25:09 +0700 Subject: [PATCH 2/2] Update README.md --- README.md | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ece95b12..21c4fa1f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ ![Mapster Icon](https://cloud.githubusercontent.com/assets/5763993/26522718/d16f3e42-4330-11e7-9b78-f8c7402624e7.png) ## Mapster - The Mapper of Your Domain +Writing mapping method is machine job. Do not waste your time, let Mapster do it. ### Get it ``` @@ -14,14 +15,12 @@ Mapster creates the destination object and maps values to it. var destObject = sourceObject.Adapt(); #### Mapping to an existing object - You make the object, Mapster maps to the object. TDestination destObject = new TDestination(); destObject = sourceObject.Adapt(destObject); #### Queryable Extensions - Mapster also provides extensions to map queryables. using (MyDbContext context = new MyDbContext()) @@ -38,3 +37,26 @@ Mapster also provides extensions to map queryables. }) .ToList(); } + +### Performance +Don't let other libraries slow you down, Mapster is at least twice faster! + +![image](https://cloud.githubusercontent.com/assets/5763993/26527206/bbde5490-43b8-11e7-8363-34644e5e709e.png) + +### What's new in 3.0 + +Debugging generated mapping function! +![image](https://cloud.githubusercontent.com/assets/5763993/26521773/180427b6-431b-11e7-9188-10c01fa5ba5c.png) + +Mapping your DTOs directly to EF6! +``` +var poco = dto.BuildAdapter() + .CreateEntityFromContext(db) + .AdaptToType(); +``` + +### Change logs +https://github.com/chaowlert/Mapster/releases + +### Usages +https://github.com/chaowlert/Mapster/wiki