Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
577 views

hibernate empty collection in component

I have a component mapped using Hibernate. If all fields in the component in the database are null, the component itself is set to null by hibernate. This is the expected behavior and also what I ...
9
votes
6answers
923 views

How might a class like .NET's ConcurrentBag<T> be implemented?

I find myself very intrigued by the existence of a ConcurrentBag<T> class in the upcoming .NET 4.0 framework: Bags are useful for storing objects when ordering doesn't matter, and unlike ...
5
votes
2answers
147 views

Is there a bag implementation in Ruby?

Is there an implementation of the bag collection (a collection like a set, that kept count of how many times an object is inserted)?
3
votes
3answers
131 views

What is an efficient algorithm for extracting bags from lists of pairs?

I have a list of pairs of objects. Objects can appear in the pair in either order. What is the most efficient algorithm (and implementation?) to find all bags (ie sets with duplicates permitted) of ...
3
votes
1answer
1k views

NHibernate child objects update problem

I have an object that called 'category' and the table looks like this. CATEGORY ID int ParentCatalogID int ParentCategoryID int << This is the ID of this table Position ...
2
votes
2answers
103 views

Find all combinations of a multiset in a string in linear time

You haven given a bag B (multiset) of characters with the size m and a string text S of size n. Is it possible to find all substrings that can be created by B (4!=24 combinations) in S in linear time ...
2
votes
6answers
83 views

First time implementing a java interface, can't get a successful compile

I need to implement a bag data structure using the interface java.util.Collection. I'm not asking for help on the actual implementation of the data structure. I just can't get my program to compile. I ...
2
votes
1answer
63 views

Fluent Nhibernate - How do I set the name attribute of a set or bag collection?

This is a set collection: <set access="field.camelcase-underscore" cascade="save-update" inverse="true" lazy="true" name="employees" table="TeamEmployee" mutable="true"> How do I set the name ...
2
votes
3answers
793 views

Objective-C implementation of a histogram or bag datastructure

Instead of implementing my own I was wondering if anyone knows of a histogram or bag datastructure implementation in Objective-C that I can use. Essentially a histogram is a hashmap of lists where ...
1
vote
1answer
38 views

Fluent nhibernate map list of items

I have a class "Company" which has a list of "Operator" public class Company { public IList<Opertator> Operators {get; set; } public Int32 Id {get; set;} } public class Operator { ...
1
vote
0answers
77 views

Nhibernate: Multiple identical records returned from child in bag

When using a bag to return items from a child table I receive the correct number of items in the bag, however all rows are identical. The Mapping for SearchPerson entity <?xml version="1.0" ...
1
vote
1answer
219 views

Why is NHibernate creating a table without primary key?

We create the database using the schemaExport class of nHibernate. I now have an class with attributes from which we generated the nhibernate mapping. A part of this class is: public class ...
1
vote
1answer
191 views

NHibernate collection mapping: it's deleting and inserting instead of updating

I'm not sure how to map a collection to update. I have 2 tables: Object - has a composite PK of 3 ints ObjectAliases - has a FK to Object and a nvarchar PK for Name, obviously name is unique ...
1
vote
3answers
151 views

Why would I want to put my objects in a bag?

I just saw an SO question about the System.Collections.ConcurrentBag<T> class, and I've seen the ViewBag property of the Controller in ASP.NET MVC. In my experience, I've learned that it's ...
1
vote
2answers
272 views

NHibernate bag - real collection items instead of proxies

I am experiencing some strange problems with NHibernate and the usage of proxy items within a bag. My mapping looks something similar to: <?xml version="1.0" encoding="utf-8" ?> <bag ...
1
vote
1answer
515 views

Nhibernate custom loader for collection

Im really hoping someone can help with this, have been trying various combinations for a day and a half now.... Basically I have a some hierarchical data stored in a single table, the usual parentID ...
1
vote
3answers
913 views

Are there any implementations of multiset for .Net?

I'm looking for a .Net implementation of a multiset. Can anyone recommend a good one? (A multiset, or bag, is a set that can have duplicate values, and on which you can do set operations: ...
0
votes
1answer
19 views

(Hibernate) How to use List Semantics for a List<String>?

(java1.6, hibernate, mySql) i'm trying to persist a java class that contains a list of strings. the problem is that when i fetch it i get a PersistentBag instead of a List or a PersistentList. i ...
0
votes
0answers
97 views

how to save pig bag in json format

I'm running Pig example$ pig --version Apache Pig version 0.8.1-cdh3u1 (rexported) compiled Jul 18 2011, 08:29:40 on very simple dataset example$ hadoop fs -cat /user/pavel/trivial.log 1 one 2 ...
0
votes
0answers
22 views

nhibernate bag with fixed relative parameters

I have the following mapping file: <?xml version="1.0" encoding="utf-8" ?> <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="ReviewData" ...
0
votes
1answer
44 views

NHibernate - mapping a collection based on a different property to the identity

Consider the following tables: Client(Id bigint, Name varchar(50)) Employee(Id bigint, Name varchar(50), ClientId bigint) that are mapped like this: <class name="Client" table="`Client`"> ...
0
votes
1answer
48 views

NHibernate + Many-to-Many + bag + mapping table

I have following 3 classes. BusinessStream Scheme Bus_Stream_Scheme_Map When I try to execute transaction.Commit() method, after session.SaveOrUpdate() for BusinessStream, I get following error, ...
0
votes
0answers
59 views

Hibernate List configuration

Hey everyone! I'm still trying to implement hibernate collections. Right now i've run into a big problem. There arent any errors, but hibernate just doesnt fetch the collection. Maybe someone can look ...
0
votes
2answers
621 views

Bag implementation as array in Java

I'm supposed to implement a bag data structure (also called a multiset), an unordered collection of homogeneous values (any Java object, excluding null) that may have duplicates, for a project. I've ...
0
votes
3answers
876 views

finding kth largest element in an array implemented bag

we have a collection of comparable held in a bag and have to find the kth largest element. I copied to a hashSet to remove duplicates then converted the hash set to an array to be sorted and ...
-1
votes
3answers
811 views

Bag Data Structure (Multiset) Class implemenation in Java Using Fixed Array

I've erased this question due to vagueness, and have asked a more specific one.