Questions tagged [object-object-mapping]
129 questions
0
votes
2 answers
Generic Mapper function in MapStruct
Friends,
Here are my Java objects
@Data
public class CarDto {
private String make;
private String model;
private int year;
}
@Data
public class Car {
private MakeEnum make;
private String model;
private int year;
}
For…

Arun Avanathan
- 982
- 4
- 11
- 26
0
votes
0 answers
MapStruct : Mapping a object property to an upper level object
Consider the below classes
class ContributionDoc {
private String contributorName;
private String version;
private int contributionNumber;
private List contributions;
}
class Contribution {
private String metadata;
}
Class…

Manav Bhanot
- 113
- 3
- 16
0
votes
2 answers
Is RestKit the only framework that has JSON to Objective-C objects mapping?
I am looking for a library or framework that does JSON to Objective-C relational object mapping.
i.e. I need to map JSON containing objects, array of objects and dictionaries of objects to my custom objects.
something like:
DataObject {
"user" :…

RickiG
- 11,380
- 13
- 81
- 120
0
votes
2 answers
How to put condition IF ELSE inside .map in React JS
I am new to React Js. IF ELSE condition inside the map gives me error.
I want to put IF ELSE condition inside map. I don't want to use Ternary Operator if IF ELSE is possible.
class Home extends Component {
constructor(props){
//codes
…

larp
- 1,017
- 1
- 14
- 23
0
votes
4 answers
Insert multiple data in child table in ASP.NET Boilerplate
Background
I have two tables Actions and ActionsDetails.
Actions:
CREATE TABLE [dbo].[Actions]
(
[ActionId] [BIGINT] IDENTITY(1,1) NOT NULL,
[DeviceId] [NVARCHAR](125) NOT NULL,
[TenantId] [INT] NOT NULL,
CONSTRAINT [PK_ActionId]
…

Zainu
- 120
- 1
- 7
0
votes
1 answer
How do I eliminate union with undefined in partial index type?
I have an objectMap() function which takes an object, applies a function to each value, and returns an object with the same keys but different values. I've written the following declaration for it:
declare function objectMap

Wolfgang
- 3,470
- 1
- 20
- 36
0
votes
1 answer
Unable to find storage information for property [TableName]
I am following what I understand is the correct way to do object mapping when pulling from the DynamoDB Database. My issues are that when I do the DyanmoDBContext.Scan function it throws the following exception(as seen below)
Exception thrown:…

Felcannon
- 25
- 4
0
votes
1 answer
Automapper - how to apply ForMember configuration at a deep level
I am trying to learn asp.NetCore 2.2. I am trying to setup a simple one page site. I have run into a problem with Automapper where manual Mappinng using forMember() is working at a top level for CreateMap

Lencocoa
- 3
- 2
0
votes
0 answers
Parsing nested JSON with AlamofireObjectMapper
How can I do the Nested JSON data parsing with alamofire?
Actually I need to display all of this in my table view.
post - id
post - tittle
post - content
post - date
post - categories - id
post - categories - title
post - attachments - url
This…

Nivin NV
- 1
- 1
0
votes
1 answer
Mapping Hierrachical Beans using mapstruct
This is an extension to this question.
class Customer{
// distinct properties
}
class RetailCustomer extends Customer{
// distinct properties
}
class WholeSaleCustomer extends Customer{
// distinct properties
}
class CustomerDO {
// String…

Naveen
- 403
- 1
- 6
- 20
0
votes
1 answer
How to map JAXB elements annotated with @XMLSeeAlso using mapStruct?
I'm trying to map a bean which has some JAXB elements like @XmlSeeAlso, @XmlElement, @XmlSchemaType as properties for that class.
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Customer")
@XmlSeeAlso({PersonalCustomer.class,…

Naveen
- 403
- 1
- 6
- 20
0
votes
1 answer
Json Object mapping Swift
I would like to do a Post request to a url however i just learnt of new concept in Swift called Object mapping. All the tutorial i have learnt how to map the Json object to swift structs or classes but non shows me how to use these objects once…

kaddie
- 233
- 1
- 5
- 27
0
votes
1 answer
Mapping encapsulated complex types with JMapper
I am trying to map two structures with JMapper but struggle with two encapsulated complex types and how to map them. I want to achive the following:
Source > Destination
Source.sourceString > Destination.destinationString
Source.SourceInternal >…

RaHe
- 351
- 1
- 4
- 19
0
votes
2 answers
Dictionary to object mapper
Is there any object-object mapper that can map properties from a dictionary (or other name-value collection)?
Let's say I have classes
public class SomeClass
{
public string Text { get; set; }
public Address HomeAddress { get; set; }
…

Mike Koder
- 1,898
- 1
- 17
- 27
0
votes
2 answers
Object mapping with a defined schema Angular 2/4
I am in a situation where i have to design an object mapper with a defined schema ie I will get a response with an array of objects which is the schema for object mapping like…

Vikhyath Maiya
- 3,122
- 3
- 34
- 68