# DynamicMapper **Repository Path**: lanicon_admin/DynamicMapper ## Basic Information - **Project Name**: DynamicMapper - **Description**: DynamicMapper allows you to map a subset of an object's properties to an ExpandoObject. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-29 - **Last Updated**: 2024-06-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README DynamicMapper ======================================== DynamicMapper allows you to map a subset of an object's properties to an ExpandoObject. Example: ```csharp var entity = CreateEntity(); var properties = new List() { typeof(Entity).GetProperty("Int1"), typeof(Entity).GetProperty("String2"), typeof(Entity).GetProperty("String4"), typeof(Entity).GetProperty("Double1"), typeof(Entity).GetProperty("Double2") }; var result = Mapper.Map(entity, properties); ```