« Mapster » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 2 : | Ligne 2 : | ||
= Links = | = Links = | ||
* [https://github.com/MapsterMapper/Mapster Mapster on GitHub] | * [https://github.com/MapsterMapper/Mapster Mapster on GitHub] | ||
= Mapping = | |||
<kode lang='cs'> | |||
// create a new itemDto from item | |||
var itemDto = item.Adapt<ItemDto>(); | |||
// update itemDto with data from item | |||
item.Adapt(itemDto); | |||
</kode> | |||
= Installation = | = Installation = |
Version du 1 juillet 2023 à 17:17
Links
Mapping
// create a new itemDto from item var itemDto = item.Adapt<ItemDto>(); // update itemDto with data from item item.Adapt(itemDto); |
Installation
dotnet add package Mapster |