| bio | website | blog.andreloker.de |
|---|---|---|
| location | Germany | |
| age | 31 | |
| visits | member for | 1 year, 3 months |
| seen | 2 hours ago | |
| stats | profile views | 137 |
Independent software developer
|
Apr 18 |
asked | Is there a special way to do faceting on numeric fields in Lucene? |
|
Apr 16 |
comment |
Nested set query using NHibernate's QueryOver API Using Linq did the trick. My original query semantically did the same cross join, it was only expressed differently. The linq query generated by NHibernate uses the exact same query plan. Thanks a lot! |
|
Apr 16 |
accepted | Nested set query using NHibernate's QueryOver API |
|
Apr 16 |
asked | Nested set query using NHibernate's QueryOver API |
|
Apr 16 |
comment |
Autofac: long-lived objects requiring short-lived objects during single method calls @GCATNM Would you care to elaborate on the "an abstraction that actually reflects that relationship" part? I think the XHelper class (ignore the naming) could be this abstraction. Re IResolveLater: it would somehow automagically resolve the instance from the "current" lifetime scope. Although I'm not sure how to define the semantics of "current". It could be, for example, the innermost (= mosted deeply nested) lifetime scope currently opened. But I'm not sure that this makes sense. At the moment, I think, the XHelper approach is the way to go. |
|
Apr 15 |
asked | Autofac: long-lived objects requiring short-lived objects during single method calls |
|
Apr 15 |
comment |
Html.ActionLink very slow Are you sure you're only calling Html.ActionLink("Title", "Action") and not something more complex? Also, do you have many routes registered? What machine are you running the code on? |
|
Apr 15 |
accepted | “Ambiguous column name” exception when using order-by in collection mapping |
|
Apr 13 |
comment |
“Ambiguous column name” exception when using order-by in collection mapping @penfold Don't worry, your answer led my efforts to the right direction. Without your "wrong" answer, I probably wouldn't have played with the NH source. I wrote a unit test inside the NH source which to my surprise didn't fail. I checked any differences between their test setup and my test app and found hbm2ddl.keywords to be different. |
|
Apr 13 |
answered | “Ambiguous column name” exception when using order-by in collection mapping |
|
Apr 13 |
revised |
“Ambiguous column name” exception when using order-by in collection mapping added 70 characters in body |
|
Apr 13 |
revised |
“Ambiguous column name” exception when using order-by in collection mapping added 341 characters in body |
|
Apr 12 |
asked | “Ambiguous column name” exception when using order-by in collection mapping |
|
Apr 12 |
awarded | Tumbleweed |
|
Apr 5 |
asked | NHibernate: “No persister” when using proxy in QuerOver/Criteria sub-query |
|
Mar 26 |
awarded | Guru |
|
Mar 20 |
accepted | Joined sub-classes inheriting from unmapped, abstract intermediate classes |
|
Mar 20 |
comment |
Joined sub-classes inheriting from unmapped, abstract intermediate classes Thanks a lot, that does the trick. I didn't know about the IModelInspector until now. I guess I'll create an attribute and have the model inspector look for it to make it reusable. |
|
Mar 20 |
comment |
Nhibernate: How to represent Many-To-Many relationships with One-to-Many relationships? (cont'd). In this case neither User nor Role would need to hold collections (one-to-many) of UserRoles instances (or at least they can be inverse). This can be useful to reduce the memory footprint because you need to load fewer collections into memory. The downside is that queries become more complex. |
|
Mar 20 |
comment |
Nhibernate: How to represent Many-To-Many relationships with One-to-Many relationships? As relational DBMSs typically don't support many-to-many relationships, those relationships are represented using a linking table and two one-to-many relationships. For example, a many-to-many relationship between Users and Roles is expressed as User one-to-many UserRoles many-to-one Role. NHibernate usually hides this and allows many-to-many relationshops transparently. If you want, you can always choose to map the linking table explicitly, ie. you'd map User, Role and UserRoles, where UserRoles contains two many-to-one relationships (to a User and a Role respectively). |