The object-object-mapping tag has no wiki summary.
0
votes
0answers
19 views
Nested Array mapping restkit v.20
i wanna to map object in Google Places Api Photos
"photos" : [
{
"height" : 1224,
"html_attributions" : [
"\u003ca ...
0
votes
0answers
22 views
Coredata relationship breaking in restkit
I am still using Restkit 0.10 (because i started this project 7 months back. i will be using restkit 0.20 from my next project).
come to the point, i have a response from server which looks like ...
0
votes
3answers
54 views
What is the objective of an ObjectMapper?
I don't understand why in Object Oriented development people are using some ObjectMapper class. Could you explain me what is the purpose of this kind of class? I'm also looking for documentation about ...
0
votes
1answer
54 views
json to java object(using mapping)?
ObjectMapper mapper=new ObjectMapper();
String response1=client.execute(request1, responseHandler);
Map jsonObject=mapper.readValue(response1, Map.class);
jsonObject.get("docs");
I am getting ...
0
votes
2answers
155 views
solr json parsing with java
I am searching through solr. it gives me response in json. like following:
{response
{numfound:# , docs{
[
{
id="#"
model="#"
}
{
id="#"
model="#"
}
]
}
}
I ...
0
votes
0answers
186 views
iOS Restkit object mapping to map NSArray to optional JSON array
I'm trying to map an NSArray *array I have to a JSON array "stuff" when I serialize an object. I've done this by implementing a many-to-one relationship and then adding this code to my serialization ...
0
votes
0answers
123 views
Jackson - Wrapping a list of objects with root object
My Controller returns a list of MyObj objects (using @ResponseBody)
public MyObj
{
int a;
int b;
}
The return JSON looks like this:
[{"a":1,"b":2},{"a":2,"b":2}]
I would like to wrap this ...
0
votes
2answers
200 views
Mapping an object to JSON using RKObjectMapping
I'm a bit new to RKObjectMapping, and I'm having some trouble figuring this out.
I have a class which has an array of objects called myObjects. This type of object already has an object mapping in ...
0
votes
0answers
111 views
RestKit Object mapping mapKeyPath toRelationship
I have a json response that includes embedded content. The API i am using only provides the embedded information the first time it is required. It is assumed that the json response will be resolved on ...
0
votes
0answers
24 views
RestKit does not find correct NSMangedObjectContext
I am working on a restkit project. At the moment I am building a view where a person can update his profile. This can give me back 2 options when I push on the save button.
1. The user fills up ...
2
votes
1answer
184 views
Reducing DB calls when using RABL with mongoid
I have a few scenarios where I would like to do as little DB calls as much as possible via eager loading, but I have not been able to do it well.
Given the 2 scenarios below, how can i change my ...
1
vote
1answer
241 views
Unable to parse Json with Map,ObjectMapper
Now a days I'm having experience of Json parsing .Not have much practice with collection.I have a Json String
{
"time":1352113682,
"api_version":"1",
"firstname":"abc",
...
4
votes
1answer
145 views
Restkit to-many relationship append to set instead of setting a new set
I have a iOS Restkit related question. I have a parent-child relationship data coming from a remote server and map those object to a NSManagedObject object with Restkit. The problem that I am ...
1
vote
0answers
145 views
Restkit nested object mapping failure
I've to parse a nested JSON object posted below. It am not getting any test objects back.What is it that I am doing incorrectly?
{"tests":[{"type":"QA","list":[{"test_performed":{"id":11,"time":" ...
2
votes
1answer
54 views
Many-to-many relationships with objects, where intermediate fields exist?
I'm trying to build a model of the servers and applications at my workplace. A server can host many applications. An application can be hosted across many servers.
Normally I would just have the host ...
0
votes
1answer
91 views
Multiple instances of same object using Restkit Object mapping
I'm using Restkit object mapping with the nested json data below. It will works great and each song object has a relevant rapper object. Except as you see below the rapper is the same for both songs, ...
1
vote
1answer
86 views
Java Mapping objects to objects - Moo
I have a question about Moo (https://github.com/geoffreywiseman/Moo/) that I haven't been able to solve on my own. I have this class structure:
class Middle{
private int id;
private Upper upper;
...
1
vote
1answer
584 views
c# ValueInjecter : Mapping the whole object Graph
I just started using ValueInjecter for my Entity Mappings(DTO <-> Entity).
Heres my DTO :
public class IncidentDTO
{
int ID { get; set; }
string Name { get; set; }
AgencyDTO agencyDTO ...
0
votes
1answer
186 views
Restkit Object Mapping with same object referenced multiple times
I am using Restkit to seed a database using a Json file. My problem is with how to construct the file to represent the relationships between the objects when the same object is referenced by two other ...
1
vote
1answer
83 views
Cloning an instance of object to its base type
I have the following class:
public class AddCouponInfoRequest : namespace.Request
{
}
I have an instance of AddCouponInfoRequest in my hand and I want to get an instance of namespace.Request with ...
0
votes
2answers
2k views
Send post request and map response to object
I am new to restKit and I have a few questions for you. I
cant understand how to send Post request using json/xml to my web
services and map the incoming reply with my classes. Can any one give
me ...
1
vote
0answers
61 views
ORM Like Framework for Semantic Data?
Is there an graph to object mapping framework for handling RDF? I would like to get some recommendations and any personal experiences.
Background Details:
I have an application that has been using ...
2
votes
1answer
1k views
IOS - RESTKIT - mapping result in multiple ways
I am new to ios/RESTKIT. I am trying to consume a webservice from an ios device using RESTKIT. The json return could have 2 possible outcomes.
A) On Failure, json result looks like this (result is a ...
2
votes
1answer
2k views
RestKit Arbitrary Keys Object Mapping
I have a JSON that looks like this here:
{
"key1":[
{
"desc":"key1decs.",
"duration":50;
},{
"desc":"",
"duration":90;
},{
"desc":"Kurz vor...",
...
3
votes
2answers
394 views
ECMAScript5 deep copy of object and arrays
I'd hope to find an example code to do a deep copying of objects in ECMAScript5.
The copying should be able to clone
Nested objects
Nested arrays
Nested objects in arrays (clone each array item ...
3
votes
3answers
10k views
Configurating ObjectMapper in Spring
my goal is to configure the objectMapper in the way that it only serialises element which are annotated with @JsonProperty.
In order to do so I followed this explanation which says how to configurate ...
1
vote
2answers
698 views
RestKit - Objectmapping! What is going wrong here?
I have a JSON response from my server.
The data, taken from the RestKit log looks like this:
sourceObject: (
{
place = {
"place_id" = ...
0
votes
1answer
731 views
RestKit -Problems with object mapping of “advanced data object”?
Im having a problem with the mapping of the: latest_update field in
the JSON data.
Recieving this JSON data from my webservice:
{"Places":[
{"place_ID": ...
1
vote
1answer
456 views
RestKit and Core Data
When doing managed objectmapping with RestKit, using core data, i map using my NSManaged subclasses fe. User.m
And that works fine.
But if i need to do ordinary objectmapping it is not possible to ...
0
votes
1answer
240 views
Lightweight class-to-MySQL record mapping in C#?
I'm using VS 2008 and .NET 3.5 framework.
I've already played a bit with XmlSerializer. I've added attributes in the business object classes like
[System.Xml.Serialization.XmlRootAttribute()]
and ...
2
votes
2answers
507 views
Dozer mapping non-Generic Collections to properties
I have some class structure as follows. These classes are hibernate classes so I cant change them.
//assume all getters & setters are present
public class Order{
private Customer customer;
...
7
votes
2answers
244 views
Is there a suggested pattern for using LINQ between the Model & DataAccess Layers in a DDD based Layered Architecture
I've been reading Tim McCarthy's awesome book on DDD in .NET. In his example application though, his underlying data access is using SqlCE and he's handcrafting the SQL inline.
I've been playing with ...
0
votes
2answers
623 views
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 ...
1
vote
2answers
255 views
Mapping IDataReader to object without third party libraries
Are there any quick way to map some IDataReader to object without third party libraries such as AutoMapper or ValueInjecter?
19
votes
3answers
10k views
Ignore mapping one property with Automapper
I'm using Automapper and I have the following scenario:
Class OrderModel has a property called 'ProductName' that isn't in the database.
So when I try to do the mapping with:
...
0
votes
2answers
393 views
Dictionary<string,object> 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; }
...
1
vote
1answer
449 views
What are the advantages of using automapper?
My question might be silly, but I'm pretty sure I miss a very important part of the issue. I have to do some object to object mapping (between domain classes used in C# project and classes which are ...
4
votes
2answers
961 views
Automapper - Bestpractice of mapping a many-to-many association into a flat object
I have two entities: Employee and Team.
What I want is an EmployeeForm that has the Name of the Team.
How can I achieve this using AutoMapper?
My current "solution" is the following:
...
0
votes
3answers
1k views
Generic object to object mapping with parametrized constructor
I have a data access layer which returns an IDataRecord.
I have a WCF service that serves DataContracts (dto's). These DataContracts are initiated by a parametrized constructor containing the ...
2
votes
1answer
898 views
Nhibernate/Hibernate, lookup tables and object design
I've got two tables. Invoice with columns CustomerID, InvoiceDate, Value, InvoiceTypeID (CustomerID and InvoiceDate make up a composite key) and InvoiceType with InvoiceTypeID and InvoiceTypeName ...
8
votes
4answers
4k views
Domain Driven Design, .NET and the Entity Framework
I'm new to domain driven design but want to learn it and use it for a new application.
I will be using Entity Framework for data access.
The basic layout so far is:
ASP.NET MVC and other clients ...

