Collections API's provide developers with a set of classes and interfaces that makes it easier to handle collections of objects.

learn more… | top users | synonyms (1)

20
votes
0answers
582 views

Bootstrapping collections for performance

In his seminal thesis, Chris Okasaki described the technique of data-structural bootstrapping. What work, if any, has been done to use this technique to improve locality in data structures? For ...
2
votes
0answers
147 views

How to query composite element of collection? (cannot create element join for a collection of non-entities)

I have a class Goods <class name="Goods"> ... <map name="names" lazy="false" fetch="join"> <key not-null="true" /> <map-key column="LANGUAGE_CODE" ...
2
votes
0answers
279 views

RESTful API: DELETE item from a list resource without additional “association resource”

Simple model: A User can have several friends (=other users). This could be a representation of a user: { "name" : "Chris", "friends" : { "href" : "http://example.org/users/32gu/friends", ...
2
votes
0answers
1k views

ASP.NET MVC 3 Validating ComplexModel.EntityCollection.Property1 for only the first X items in the collection with Custom ValidationAttribute

My model is described below. I'd like to only require a subset of Reference fields for the first 2 items in the Application.References collection. I'd like this to occur on both client side and server ...
1
vote
0answers
21 views

WCF returns ArrayOfKeyValueOfintstringKeyValueOfintstring[] instead of Dictionary<int, string> and Array instread of List

So I've spent the last several hours investigating this issue and it is clear that I am not the only one. Why are my Dictionaries and Lists being returned as Arrays? I understand that Arrays are ...
1
vote
0answers
27 views

Rails nested routing match

I am new to rails and have a tricky routing question. I have a resource with a nested collection that maps to the controller of the type for the nested collection. However the name of the ...
1
vote
0answers
41 views

ETL:parallel lookup in and insert in scala

For our ETL, the fact data don't have item_key, but have item_number. During the loading, if we can find the item_key for the item_number, then just use it,if can NOT find, then auto create an ...
1
vote
0answers
74 views

converting hashmap to hashset retaining the constraints

I had a entity class which was using hashmap to one of the attribute with one to many mapping. Now I have converted that map to separate entity class with foreign key constraint. Before class ABC{ ...
1
vote
0answers
13 views

How does one enable an app's data to be added to users' default sections?

At https://developers.facebook.com/docs/opengraph/guides/collections/#datatodefaultsections it says: There's a way to suggest people add your app's data to their section directly. It's best ...
1
vote
0answers
38 views

Modifying a class in a collection with undo

This is not so much a question as to how to do something, but rather how I can implement something better or think about the problem differently. I have a winforms application that allows the user ...
1
vote
0answers
150 views

Does System.Collections.Immutable.IImmutableList<T>.Add from Microsoft's Preview of Immutable Collections have a position requirement?

I am implementing an immutable collection, which provides O(1) stack operations and O(log n) list operations. As a result, adding elements to the front is faster than adding elements to the back. Can ...
1
vote
0answers
111 views

Form Collection error bubbling

Hello I have a problem with collection of text fields in my form. When there are errors in one of the fields, these errors bubbles into parent form so they are not assigned to field but to parent ...
1
vote
0answers
55 views

Merge on detached Unidirectional One-To-Many collection

I have the following classes relation: SiteSettings contains a component which has a collection of EmailAddress public class SiteSettings { public virtual Guid Id { get; set; } public ...
1
vote
0answers
29 views

Magento: data in collection is not complete?

I have created a collection ($myCollection) in Magento and I get its data using this code: $data = $myCollection->getData(); That works, but when I look at the $data array, I see that some ...
1
vote
0answers
61 views

NSPredicate Query (KVC) on Collections Containing Collections

Edit (I missed a layer of detail): each teacher has an array of classes. (I ran the JSON through a validator, too, so it's a little easier to read) Assume the following JSON: { "schools": [ { ...
1
vote
0answers
81 views

Grails first object in a collection not updating whilst in an each loop

I am implementing a simple chat system in Grails as part of an existing application. The main classes to consider are: User.groovy class User { ... static hasMany = [ ... chatMessages ...
1
vote
0answers
65 views

Collection of type entity symfony2.1

My problem: I want to know if it's possible to embed a collection of type entity in the form builder. I have two entities: A Partitions Entity which got many Genrepartition Entities /** * ...
1
vote
0answers
106 views

FaultedException: formatter threw an exception while trying to deserialize

App fails with exception when it calls method Save(A a); {"The formatter threw an exception while trying to deserialize the message: Error deserializing parameter http://tempuri.org/:infs. ...
1
vote
0answers
95 views

wpf attached property with collection doesnt get updated

I like to share a list between an application and a custom Usercontrol. I use an IEnumerable as attached property to provide a list to a Listbox inside the custom UserControl. The ListBox then ...
1
vote
0answers
303 views

ASP.NET MVC 4 Code First Many to Many Adding to Collection

I am using ASP.NET MVC 4 code first pattern for database layer. I have a many to many relationship between UserProfile and Task. When I try to add a task to the the collection of tasks of a user, it's ...
1
vote
0answers
105 views

Read-only generic collection interfaces

Ok I have been trying to find the best way to do read-only generic collection interfaces and this is what I came up with: public delegate Boolean EnumerateItemsDelegate<ItemType>(ItemType ...
1
vote
0answers
214 views

Making a model retrieve external JSON feed with Alloy in Titanium

I've searched the net through for examples and tutorials on using the Alloy framework for Titanium to fetch data from an external JSON feed. What I need to do is simply to collect strings and images ...
1
vote
0answers
67 views

How I can persist an ArrayCollection to mysql?

the problem is the following: When talking about radios I have programs, each program must have ads, so each program have one or many ads mentions. Mi entity program: <?php namespace ...
1
vote
0answers
362 views

MongoDB embedded vs array sub document performance

Given the below competing schemas with up to 100,000 friends I’m interested in finding the most efficient for my needs. Doc1 (Index on user_id) { “_id” : “…”, “user_id” : “1”, friends : { “2” : ...
1
vote
0answers
125 views

Looping through All collections in VBA

I have a program where I create several different collections in VBA. After the program completes, I need to delete the records in each collection. I have been able to delete the collections ...
1
vote
0answers
29 views

Not commiting after swap within a Collection with hibernate

Working with hibernate 4.1.7, I have a class with a Collection (attachments), defined in the mapping file as: <list lazy="false" table="news_attachment" name="attachments"> <cache ...
1
vote
0answers
74 views

Utility to exponse an EnumSet as an existance map (Map<? extends Enum, Boolean>)?

I am using Spring to bind user input into a command object. Unfortunately it does not seem to support EnumSets (giving an Exception "Could not instantiate Collection type: java.util.EnumSet"), so I am ...
1
vote
0answers
33 views

Jax-B How to bypass default marshaling behaviour for Collection?

I have a class that implements java.util Collection interface and I want to have a custom XML marshalling using jax-b. When I try to use an XmlAdapter, it's ignored and jax-b uses the default ...
1
vote
0answers
323 views

JPA @formula and Collection<?>

@Entity @Table(name = "Person") public class Person { @Id private Long id; private String firstName; private String lastName; @ManyToOne(fetch = FetchType.LAZY, cascade = ...
1
vote
0answers
59 views

How to validate a generic collection of Data in window Form

I have the method that does a calculation and adds the data to a collection list. Below is my code IterateDtColl iterateDataList = new IterateDtColl(); double answer; //Array to ...
1
vote
0answers
87 views

Thread-safe NavigableSet with constant size-operation?

I'm searching for a specific data structure that is exactly like ConcurrentSkipListSet but without the linear size-operation, which may be called quite often for larger sets. I know about ...
1
vote
0answers
84 views

Getting list of applications that uses certain permission

I am currently able to retrieve the list of permission for all application, but is there a way to get a list of the applications that use a certain permission? With this code I am able to get the ...
1
vote
0answers
64 views

Debug Mode - LINQ NullReferenceException on Collection Constructor

I think I've found a bug in Visual Studio when you drag-and-drop the break-point to a different branch and you're using a certain type of LINQ query. If you place a breakpoint on the "if (x)" below ...
1
vote
0answers
35 views

Retrieving choice vlues from xsd

here is the part of xsd-scheme: <xsd:complexType name="TGroups"> <xsd:choice> <xsd:element name="GROUP1"/> <xsd:element name="GROUP2"/> </xsd:choice> ...
1
vote
0answers
109 views

NHibernate Criteria and Lazy Load Gets Unwanted Many:Many entity

I am having trouble mapping my entities with Criteria to properly load the object graph. My model looks like this: Customer -> CustomerCarriers -> Customer,Carrier Carrier -> Customer Customer has ...
1
vote
0answers
133 views

How can I return a key-value pair from EF ExectureStoreQuery()?

I have a complex query that returns a number of int pairs (mykey and mykeytype) from a call to ExecuteStoreQuery: public class myPair { public int mykey {get;set;} public int mykeytype ...
1
vote
0answers
241 views

Group strings by longest common substring

I have a collection, I want to split it by a predicate, the predicate is on the resulting collection. I want to split this list by strings with common letter. "Inky", "Blinky", "Pinky", "Pinky", ...
1
vote
0answers
2k views

Magento, addAttributeToSelect, alias

how to make an alias (AS) when using collections. $collection->addAttributeToSelect('total_qty') It can be done this way: $collection->getSelect()->columns(array('alias'=>'total_qty')) ...
1
vote
0answers
127 views

Can I retrieve the stored value x in a hashset given an object y where x.Equals(y)

[TestFixture] class HashSetExample { [Test] public void eg() { var comparer = new OddEvenBag(); var hs = new HashSet<int>(comparer); hs.Add(1); ...
1
vote
0answers
320 views

writing data structure in C# with regards to byte alignment

I have a problem with data alignment in a file that I am creating from C# to be used in a legacy app. I have all my data stored as a List of structs. List<CParameterItem> m_Items = new ...
1
vote
0answers
410 views

Magento Collection: incorrect product category ID in URL

I'm looking to display a featured products collection, based on a featured attribute filter. I get this basically working okay. The part I'm struggling with is that the URL that gets attached to ...
1
vote
0answers
346 views

Rails simple_forms collections radio button broken down

I am attempting to make a voting system for some video. On the vote page I want a radio button for each finalist and next to it an image pulled form youtube the file name and the finalist name. I have ...
1
vote
0answers
151 views

GAE. How to query from childs' property using JDO?

Based on GAE JDO page (http://code.google.com/appengine/docs/java/datastore/jdo/relationships.html), I create Employee and ContactInfo objects with relation one to many. public class Employee ...
1
vote
0answers
202 views

need a .net collection which is similar to std::map

I need a .net collection which has the following features (similar to std::map): Addition/Deletion is O(log n) Search is O(log n) Has a BinarySearch like method which returns the closest object ...
1
vote
0answers
365 views

Hibernate - class level @Where annotation is not enforced on collections of that class?

I have annotated a Hibernate entity with a @Where attribute at the class level. This restricts which entities are loaded when I query it directly, but it does not seem to be applied to collections of ...
1
vote
0answers
85 views

Removing disconnected MarshalByRefObjects from server side lists

In .Net remoting, if one creates a list of remote objects, then if the remote side goes away and you try to access one of the list items you would get an exception. All well and good, you can try ...
1
vote
0answers
162 views

Manually reordering a collectionview in wpf

I am trying to create a custom control that has the following features: 1. A horizontal listbox backed by a listcollectionview and ultimately an ObservableCollection. 2. Each of the listbox items has ...
1
vote
0answers
336 views

C# custom collection editor callback

I have created a custom collection editor which is started from the ... button in the property editor for a list of items. There is a wrapper class called CustomCollectionEditor which launches a form ...
1
vote
0answers
107 views

Rails model's callback is not allways fired from another model

I've got a strange problem. For example i have only two models: class Book < ActiveRecord::Base belongs_to :shelf after_update :specific_callback private def ...
1
vote
0answers
120 views

Ideas for categorized items with hierarchical relationships?

This is for a .NET control I'm creating. The control has an Items property that contains all items as a flat list. There is also a Categories property: each item belongs to one category. Each ...

1 2 3 4 5 13