Tagged Questions
The object-graph tag has no wiki summary.
11
votes
2answers
220 views
One-way sync of two hierarchies
I'm hoping to write an algorithm to synchronize two hierarchical structures. These structures could be object graphs, data stored in relational database tables, etc (even two different structures, so ...
7
votes
3answers
241 views
Library for visualizing object graphs in .NET
Does anyone know of, or can recommend, a library that can recursively visualize an arbitrary object graph in .NET?
I need to be able to print out (to the console) a formatted representation of an ...
6
votes
5answers
586 views
Java object graph visitor library
Do you know a good java object graph visitor library?
I want to visit an object and its sub components and perform some actions when some conditions are matched.
Example usage:
on a huge domain ...
5
votes
2answers
89 views
Serialization - Viewing the Object Graph from a Stream
I'm wondering if there's a way in which I can create a tree/view of a serialised object graph, and whether anyone has any pointers? EDIT The aim being that should we encounter a de-serialization ...
5
votes
3answers
341 views
java: assigning object reference IDs for custom serialization
For various reasons I have a custom serialization where I am dumping some fairly simple objects to a data file. There are maybe 5-10 classes, and the object graphs that result are acyclic and pretty ...
5
votes
3answers
111 views
Why do people talk about DI frameworks “instantiating an object graph” rather than “instantiating objects”?
I'm reading a book about DI that always talks about DI frameworks "instantiating an object graph". Why say it this way rather than "instantiating objects"?
5
votes
4answers
765 views
Object tree navigation language in Java
In the system which I'm currently developing I often have to navigate an object tree and based on its state and values take actions. In normal Java this results in tedious for loops, if statements ...
3
votes
1answer
91 views
Should CoreData inverse relationships be represented as retained properties?
I have two entities (Session and User). Session entity has loggedInUser relationship to User entity. And the User entity has session inverse relationship to Session entity.
Xcode generates properties ...
3
votes
2answers
281 views
Core Data Alternatives on iOS
I've been developing several iOS applications using Core Data and it has been an excellent framework to work with. However, I've encountered an issue whereby we more or less have distributed objects ...
3
votes
2answers
429 views
Optimal way to persist an object graph to flash on the iPhone
I have an object graph in Objective-C on the iPhone platform that I wish to persist to flash when closing the app. The graph has about 100k-200k objects and contains many loops (by design). I need to ...
2
votes
1answer
406 views
StructureMap HowTo: Conditional Construction on Deep Object
I'm having difficulty conditionally creating a dependency. Googling, I have yet to find a good example of using the BuildStack and Conditional Predicates.
Here's what I'm doing in the Registry:
...
2
votes
4answers
878 views
Clone Whole Object Graph
While using for an object this code to serialize it:
public object Clone()
{
var serializer = new DataContractSerializer(GetType());
using (var ms = new ...
1
vote
1answer
64 views
FluentNhibernate, retrieve partial Object Graph
So I will call a repository to retrieve the root object of a complex object graph, using FluentNHibernate. But for some sub-level objects I don't want to retrieve all elements, but only those where a ...
1
vote
2answers
1k views
Rails 3: Escape characters (\) appearing in part of JSON string
Anyone know why some of my json elements are being backslash(\) escaped while others are not?
...
1
vote
2answers
87 views
.Net templating engine with object graph output, not string
I would like to know if there's any templating engine that is used for object graph creation? There are many to create HTML or other string resulting content. But I would like a templating engine that ...
1
vote
2answers
215 views
Object graphs and web services
I'm really new to web services and need to create a webservice that can deal with object graphs. My canonical example would be a CRM web service that given a customer number would return an "object" ...
0
votes
1answer
25 views
Traverse and find all given type instances within complex object graph
(using vb.Net 4.0) Say you have an object whose graph is fairly complex - it has properties, arrays and other collections, subclasses with their own properties and collections, etc. I want to fully ...
0
votes
2answers
48 views
binding and configuration for webHttpBinding in RESTful service?
I'm new to WCF and am trying to get my head around the labyrinth of configurations the services take. I have a rest service that can return an export of a table, which it larger than the default ...
0
votes
0answers
36 views
Update referenced proxy object retrieved using requestfactory
I have two lists of proxy objects like this:
List<ParentProxy> parentProxies;
List<ChildProxy> childProxies;
@ProxyFor(Parent.class)
public interface ParentProxy extends EntityProxy {
...
0
votes
1answer
68 views
NHibernate, Separate queries (using QueryOver) to populate complex object
We're using a database that doesn't support query batching so we can't make use of NHibernate Futures in this instance. We know we can still populate our complex object graph using multiple-queries ...
0
votes
1answer
80 views
Partial update of entity objects with EF 4
I'm implementing DAL and BL layers of application.
It is hosted as WCF service, and EF 4 is used as ORM.
We have role based security layer and business rule that only part of object can be updated by ...
0
votes
2answers
77 views
Constructing a navigation path between two objects
Given two .NET objects (a root and a leaf) in an arbitrary object graph (linked by properties and collections), is there an existing API or example to construct a path (something like a WPF property ...
0
votes
2answers
92 views
Facebook object graph https request from ruby
How would you do a request to Facebook object graph to get the user's friends?
If you type in the url it works in the browser (replaced by valid user_id and access token):
...
0
votes
2answers
85 views
What is the difference between Object-Graph and a class diagram?
Is there a difference in the meaning of "class diagram" and "object graph"?
0
votes
3answers
96 views
Building an object graph from flat object array in javascript
i have a javascript array of objects with objects that look like this:
itemId
name
parentItemId <== top level items with no parent have null value
I want to build a graph where the parent ...
0
votes
0answers
18 views
distribution of objectgraphs across machines
Is there any APIs/framework in the .NET world that helps me with the mirroring/distribution and synchronization of complex .NET object graphs across machines? Whenever something in the object graph ...
0
votes
1answer
133 views
How to navigate the object graph using JPA Criteria API?
Suppose we have the following class graph:
public final class Address {
private final String streetAddress
public String getStreetAddress() {
return streetAddress;
}
}
public ...
0
votes
3answers
254 views
.NET Binary Serialize object with references to other objects . . . what happens?
If you have an object instance A that references other objects (for example instances B and C), and you binary serialize A to a file, what happens? Do you now have serialized data that includes A, B ...
0
votes
1answer
99 views
Documenting incomplete object graph of DTO object
The current architecture is based on WCF services which populate DTO objects from DB and return them.
Some methods return complete object graph, some only partial. If completely populated, some ...
0
votes
2answers
364 views
How do I serialize/deserialize a NHibernate entity that has references to other objects?
I have two NHibernate-managed entities that have a bi-directional one-to-many relationship:
public class Storage
{
public virtual string Name { get; set; }
public virtual IList<Box> ...
0
votes
1answer
738 views
How to eager load in WCF Ria Services/Linq2SQLDomainModel
I have a databound grid at my view (XAML) and the Itemsource points to a ReportsCollection. The Reports entity has three primitives and some complex types. These three are shown as expected at ...