Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
4k views

Fluent NHibernate HasManyToMany() Mapping Problem

i am having a problem in Fluent NHibernate example utilizing the Many-to-Many relationships, i tried to find out examples on a similar case, and i found tons , but still having the same problem. when ...
4
votes
1answer
677 views

How to remap <C> (control) modifier key in vim?

I avoid the "control" key, AKA <C> in vim parlance, on my laptop; I hate where Apple put it. I would really like to remap all of the vim commands using control to instead use "command", but this ...
2
votes
2answers
20 views

Primary AND composite keys in one Entity with Fluent Nhibernate

Here is my problem: Domain: I have following Entities: [Sensor] that can be positioned at [Location]. It is a many-to-many relationship. I break it into two one-to-many to aggregate a [Position] of a ...
2
votes
2answers
868 views

Eclipse key mappings confused

I'm trying to use eclipse on Win 7, but for some reason it is screwing up my keys. For example, when I press '{' it ends up displaying a '^'. Im pretty sure that this is what would happen if I had a ...
2
votes
1answer
523 views

Hibernate Bi- Directional many to many mapping advice!

i woundered if anyone might be able to help me out. I am trying to work out what to google for (or any other ideas!!) basically i have a bidirectional many to many mapping between a user entity and a ...
1
vote
0answers
59 views

Fluent Nhibernate - ClassMaps in multiple, seperate assemblies

Good afternoon people, I have had a look over the other answers for questions similar to my own but none have yielded a solution as of yet so I feel it is time to ask for myself. Consider the ...
1
vote
1answer
100 views

obtain grails url mappings from memory

hi i want to obtain the grails url mappings from memory and change them dynamically. My doubt is where to get the url mappings from memory programatically ? is it available in the grailsapplication?
1
vote
3answers
367 views

Coldfusion this.mappings does not work in a cfc -> function

How do I get the mappings I have defined in application.cfc to work in other functions in other cfcs? i.e. this.mappings["plugins"] works just fine on any page but if I try to instantiate a cfc ...
1
vote
1answer
243 views

How can I map one to one relationship in Fluent NHibernate. I have tried everything else

I have this table structure and would like to map it using Fluent Hibernate (subclass if possible). I cannot change the structure because the database has too many records and might cause major ...
1
vote
2answers
427 views

LINQ to NHibernate can't get to children's children

I have entity A which has an IList of B called Bs and B has an IList of C called Cs. I want to search for all A's which have at least 5 C's in them. So I went and wrote using (var s = ...
0
votes
1answer
22 views

one to many mapping using Lists and join table

I m using one-to-many mapping for List using join table. There are lot of examples available on net of this mapping using Sets but not with Lists. Consider tables: Table Ticket { ticketid int PK; ...
0
votes
1answer
16 views

<list-index …> --Hibernate mappings

Two questions about <list-index...> : 1)Is it necessary that values of column given in <list-index ...> element of <list> tag in mappings lists must be unique??? ...
0
votes
2answers
34 views

One-to-one mapping with Fluent NHibernate not working

I have 2 tables (Labour and LabourPosition). Instead of having a fki to the LabourPosition table from the Labour table, I'd like to use an object (theLabourer.LabourPosition.Nameinstead of ...
0
votes
1answer
92 views

fluent nhibernate - Many to Many relationship with attribute on relationship

I have my code working, but I'm getting 2 extra columns in the table/ddl, to represent a Many to Many relationship, ~~but~~ with attributes (scalars) on the relationship. I am using 1.2.0.712 ...
0
votes
1answer
205 views

Map shared folder on another domain using net.exe in a c# Windows Service application

I am trying to map a network drive on to the server inside a windows service written in c#. I tried using net.exe with below code System.Diagnostics.Process p = new ...
0
votes
2answers
165 views

railo application.cfc this.mappings not working

i am using the latest version of railo, and am trying to get the per-application mappings to work. this is what i am doing: <cfcomponent name="MyApp"> <cfset THIS.Name = "MyApp"> ...
0
votes
1answer
118 views

Fluent NHibernate mapping common properties in base object

I've been doing some research and found this article. I feel like this could be the answer to my question, but there are not enough details for me to fully understand how to resolve this issue. Here's ...
0
votes
0answers
35 views

Filter URL Mappings

My application is running on weblogic server 1 0.3.4 and iam using jsf 2.0. I have a requirement where in I have to implement a technique to validate the user before he starts accessing the ...
0
votes
0answers
138 views

Fluent NHibernate Unit Tests How To Verify Mappings Against Database Schema

I would like to run some unit tests to verify that my Fluent NHibernate mappings correspond to the database schema. I found this NHibernate resource online But this is a quick and dirty method. ...
0
votes
2answers
144 views

Fluent NHibernate? Am I doing this correctly?

I am new to using Fluent NHibernate and NHibernate for the first time. I've used a custom written mapper since about 2000 that was written in house. Made a switch to LinqToSQL about 2 years ago, and ...
0
votes
1answer
140 views

NHibernate one to one mapping - weird joins?

I'm having some problems with NHibernate one to one mapping. I'm using Fluent Nhibernate, and basd my mappings on this blog post: ...
0
votes
1answer
104 views

two aggregate roots in fluent nhibernate

The problem is that I have two aggregate roots The Aggregate roots are Project. NewsArticle. A Project can have a collection of related NewsArticle. A NewsArticle can have a collection of ...
0
votes
2answers
384 views

Hibernate: how to map java object on two columns automatically?

Imagine I have one common functionality: series and number (string and integer) of some document. My object (insurance policy) contains information about series and number of different documents, so I ...
0
votes
1answer
193 views

Fluent NHibernate reflection mappings

I'd like to parse through an Fluent NHibernate mapping file so I can get the table name and column names that are specified in there. Loading the assembly and reflecting the type as ClassMap isn't a ...
0
votes
2answers
156 views

Creating and retrieving associated mappings in NHibernate

Say I have two persistent classes Cat and Hat. Let's imagine that the relationship between the two is bidirectionally one-to-many, as in a Cat can have many different Hats, and we can traverse the ...
0
votes
2answers
97 views

mod_rewrite for specific domains in a mappings file

I have a bunch of domains that I want to go to one domain but various parts of that domain. # this is what I currently have RewriteEngine On RewriteCond %{HTTP_HOST} ^.*\.?foo\.com$ [NC] RewriteRule ...
0
votes
1answer
153 views

hibernate resultset and mapping confusion

I was having a problem in getting result through hibernate. I have four tables SnsUser, Participant, Interaction, Content; SnsUser & Interaction has many-2-many relationship and Interaction and ...
0
votes
1answer
48 views

NHibernate / Fluent NHibernate Mapping

Is it possible to map the following situation? A product class (currently a table) An account class (currently a table) An accountproduct class (currently a join table but with additional ...
0
votes
1answer
42 views

validate linqtosql mapping to a model

I have generated a LinqtoSQL mapping xml file, which I have a valid XSD schema that I check to make sure the XML is correct. Now I want to check that the field type match the Model/Interface for ...
0
votes
1answer
156 views

NHibernate collection not loading with data, but data is inserted into database

Not sure what I am doing incorrectly here with NHibernate. I have two mapping files mapped to two tables. I can insert data through the mapping into the database, but calling the below code returns 0, ...
0
votes
1answer
127 views

How can one identify the operation to perform in a servlet?

I am trying to follow this example but I can't understand this part: Imagine also that the servlet's context path is myServer/myApp/servlets. The servlet container would direct a request with URL ...
0
votes
2answers
281 views

Fluent NHibernate one-one mapping through additional table

I have a table A that has a references to a table B through a third table C. C contains the primary key of A and B. For each A there is at most one record in C. When I try to create a mapping for A ...