Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cezarypiatek/MappingGenerator
:arrows_counterclockwise: "AutoMapper" like, Roslyn based, code fix provider that allows to generate mapping code in design time.
https://github.com/cezarypiatek/MappingGenerator
automapper c-sharp code-generation codegenerator dotnet mapper mapping roslyn visual-studio vsix
Last synced: 2 days ago
JSON representation
:arrows_counterclockwise: "AutoMapper" like, Roslyn based, code fix provider that allows to generate mapping code in design time.
- Host: GitHub
- URL: https://github.com/cezarypiatek/MappingGenerator
- Owner: cezarypiatek
- License: mit
- Archived: true
- Created: 2018-02-15T21:43:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-16T08:27:46.000Z (almost 3 years ago)
- Last Synced: 2024-09-26T22:42:07.599Z (about 1 month ago)
- Topics: automapper, c-sharp, code-generation, codegenerator, dotnet, mapper, mapping, roslyn, visual-studio, vsix
- Language: C#
- Homepage: https://marketplace.visualstudio.com/items?itemName=54748ff9-45fc-43c2-8ec5-cf7912bc3b84.mappinggenerator
- Size: 1.8 MB
- Stars: 1,030
- Watchers: 31
- Forks: 120
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-roslyn - Mapping Generator - Code fix that generates arbitrary complex object-object mappings. It recognizes out of the box a large number of scenarios where mappings are used. A design-time alternative to [AutoMapper](https://automapper.org/). (Open Source Analyzers, Code Fixes, and Refactorings)
- awesome-analyzers - MappingGenerator - 🔄 "AutoMapper" like, Roslyn based, code fix provider that allows to generate mapping code in design time. (Popular Analyzers / Miscellaneous)
README
## WHY THIS PROJECT IS ARCHIVED - EXPLANATION
------------------------------
MappingGenerator is discontinued in the form of FOSS. I spent the last three months (March 2021 - June 2021) working hard on improving MappingGenerator. I solved many issues and added a bunch of new cool features. I also made a general refactoring which restored the project maintainability. All of that cost me a lot of my private time and I did it all by myself, so I decided to convert MappingGenerator into a commercial product. A perpetual license for a new version of MappingGenerator can be obtained via the official product website https://www.mappinggenerator.net/I would like to thank all of you who contributed to this product by reporting issues, testing, authoring PRs, or buying me coffee. **PR authors (except the Only README Updaters) and Coffee Buyers will be awarded with a special license for MappingGenerator for free - I will send them an email with details in a few days.**
🔥 Important Links:
- Product page https://www.mappinggenerator.net/
- Download page for VS2017 and VS2019 https://marketplace.visualstudio.com/items?itemName=54748ff9-45fc-43c2-8ec5-cf7912bc3b84.mappinggenerator
- Download page for VS2022 https://marketplace.visualstudio.com/items?itemName=54748ff9-45fc-43c2-8ec5-cf7912bc3b84.MappingGenerator2022
- Current release notes https://github.com/cezarypiatek/MappingGeneratorReleases/releases
- New Issue Tracker https://github.com/cezarypiatek/MappingGeneratorIssueTracker------------------------------
# Mapping Generator [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text="AutoMapper"%20ike,%20Roslyn%20based,%20code%20fix%20provider%20that%20allows%20to%20generate%20mapping%20code%20in%20design%20time.&related=@cezary_piatek&url=https://github.com/cezarypiatek/MappingGenerator)
"AutoMapper" like, Roslyn based, code fix provider that allows to generate mapping code in design time. Read more [Mapping Generator – Design Time Alternative to AutoMapper](https://guidnew.com/en/blog/mapping-generator-design-time-alternative-to-automapper/)
You can download it as Visual Studio Extension from [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=54748ff9-45fc-43c2-8ec5-cf7912bc3b84.mappinggenerator).
## Motivation
[The reasons behind why I don't use AutoMapper](https://cezarypiatek.github.io/post/why-i-dont-use-automapper/)### Contributing
Before you start any contributing work, please read the [contribution guideline](/docs/CONTRIBUTING.md)### Supported IDE
#### VisualStudio.
Install as VSIX from [Market place](https://marketplace.visualstudio.com/items?itemName=54748ff9-45fc-43c2-8ec5-cf7912bc3b84.mappinggenerator) or as a [NuGet package](https://www.nuget.org/packages/MappingGenerator/). Verify your [Roslyn integration option in case you are using R#](#using-along-with-resharper).#### JetBrains Rider
Install as a [NuGet package](https://www.nuget.org/packages/MappingGenerator/)#### VSCode
Install as a [NuGet package](https://www.nuget.org/packages/MappingGenerator/) or use [this instruction](https://www.strathweb.com/2017/05/using-roslyn-refactorings-with-omnisharp-and-visual-studio-code/) to install from [VSIX](https://marketplace.visualstudio.com/items?itemName=54748ff9-45fc-43c2-8ec5-cf7912bc3b84.mappinggenerator)### Using along with Resharper
If you are not able to open Roslyn refactoring menu (`ctr + .`) please verify your Resharper settings related to `Visual Studio Integration` or `Visual Studio code analysis` (depends on the R# version). For more information please check [#50](https://github.com/cezarypiatek/MappingGenerator/issues/50)
![resharper settings](doc/resharper_settings.jpg)
## Main features
### Generate mapping method body
#### Pure mapping method
Non-void method that takes single parameter```csharp
public UserDTO Map(UserEntity entity)
{
}
```![Generating pure mapping method implementation](doc/pure_mapping_method_newone.gif)
#### Updating method
Void method that takes two parameters
```csharp
public void Update(UserDTO source, UserEntity target)
{
}
```
![Generating update method implementation](doc/update_method.gif)#### Mapping Constructor
Constructor method that takes single complex parameter```csharp
public UserDTO(UserEntity user)
{
}
```
![Generating mapping constructor implementation](doc/mapping_constructor.gif)Constructor method that takes more than one parameter
```csharp
public UserDTO(string firstName, string lastName, int age, int cash)
{
}
```![Generating multi-parameter constructor](/doc/multiparameterconstructor.gif)
#### Updating member method
Void member method that takes single parameter
```csharp
public void UpdateWith(UserEntity en)
{
}
```![Generating update member method imeplementation](doc/update_member_method.gif)
Void member method with more than one parameter
```csharp
public void Update(string firstName, string lastName, int age)
{
}
```
![](/doc/multiparameterupdate.gif)### Generate inline code for fixing Compiler Errors:
[CS0029](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-messages/cs0029) Cannot implicitly convert type 'type' to 'type'![cs0029](/doc/cs0029.jpg)
[CS0266](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-messages/cs0266) Cannot implicitly convert type 'type1' to 'type2'. An explicit conversion exists (are you missing a cast?)
![cs0266](/doc/cs0266.jpg)
CS7036 There is no argument given that corresponds to the required formal parameter
![CS7036](/doc/splatting.gif)
## Other mappings
- Complete empty initialization block
![Generate initialization bloc](doc/emptyInitialization.gif)- Complete empty initialization block in lambda expression `Expression> = (T) => new T2{}`
![initialization block in lambda expression](https://user-images.githubusercontent.com/7759991/41869113-4704c6f0-78b8-11e8-8c3c-47a6b5bf308c.gif)- Provide local accessible variables as parameters for method and constructor invocation
![locals as parameters](doc/localsforconstructor.gif)- Create missing mapping lambda
![mapping lambda](doc/mapping_lambda.gif)- Generate ICloneable interface implementation
![generate clone method](https://user-images.githubusercontent.com/7759991/44867726-f45c0080-ac88-11e8-87e9-feed8242af79.gif)## Object scaffolding
![sample scaffolding](/doc/object_scaffolding.gif)
## Mapping rules
- Mapping Property-To-Property
```csharp
target.FirstName = source.FirstName;
target.LastName = source.LastName;
```
- Mapping Method Call-To-Property
```csharp
target.Total = source.GetTotal()
```
- Flattening with sub-property
```csharp
target.UnitId = source.Unit.Id
```
- Mapping complex property
```csharp
target.MainAddress = new AddressDTO(){
BuildingNo = source.MainAddress.BuildingNo,
City = source.MainAddress.City,
FlatNo = source.MainAddress.FlatNo,
Street = source.MainAddress.Street,
ZipCode = source.MainAddress.ZipCode
};
```
- Mapping collections
```csharp
target.Addresses = source.Addresses.Select(sourceAddresse => new AddressDTO(){
BuildingNo = sourceAddresse.BuildingNo,
City = sourceAddresse.City,
FlatNo = sourceAddresse.FlatNo,
Street = sourceAddresse.Street,
ZipCode = sourceAddresse.ZipCode
}).ToList().AsReadOnly();
```
- Unwrapping wrappers
```csharp
customerEntity.Kind = cutomerDTO.Kind.Selected;
```
```csharp
public enum CustomerKind
{
Regular,
Premium
}public class Dropdown
{
public List AllOptions { get; set; }public T Selected { get; set; }
}public class CustomerDTO
{
public string Name { get; set; }
public Dropdown Kind { get; set; }
}public class UserEntity
{
public string Name { get; set; }
public CustomerKind Kind { get; set; }
}
```
- Using existing direct mapping constructor
```csharp
target.MainAddress = new AddressDTO(source.MainAddress);
```- using existing multi-parameter constuctor
```csharp
this.User = new UserDTO(firstName: entity.FirstName, lastName: entity.LastName, age: entity.Age);
```