Tagged Questions
7
votes
3answers
193 views
Bug in NHibernate Aliasing
I am using NHibernate for my database management.
In one class I am calculating a property using this formula:
(SELECT MIN(x.timestamp) FROM (SELECT MAX(r.Timestamp) AS timestamp, r.Meter_Id FROM ...
4
votes
1answer
1k views
Mapping Formula in fluent nhibernate
Im having a entity called Event:
public virtual int ID { get;set;}
public virtual string Name { get;set;}
public virtual Event Master { get;set;}
public virtual int ChildrenCount { get;set;}
...
0
votes
1answer
177 views
Formula after switching to NHibernate 3.2
I use this formula in NHibernate 3.1 :
.Formula("(SELECT b.Name FROM AdaptiveObjectModel.EntityType AS b WHERE (Structure = b.EntityTypeId))")
but after switching to NHibernate 3.2 receive this ...
1
vote
1answer
237 views
NHibernate - Is there a way to map a formula that uses sql function and returns Table?!
I have a sql function that returns table and I need to map it to a collection i'm trying with formula but as far as i can tell formula is good only to single returned value (right?!?)
is there a way ...
1
vote
1answer
698 views
fluent nHibernate: How to persist a property which is mapped with Formula?
I am dealing with a legacy database, and we have a field which doesn't make sense anymore, but I would rather not change the DB schema.
I'm trying to map an old DB text field into a class with a ...
0
votes
1answer
379 views
FluenNHibernate .Formula(“…”) not work
I use FluentNHibernate with AutoMapping.
No custom conventions or alterations are used. Both NHibernate and FluentNHibernate assemblies are of the latest versions. Database is Sqlite3
I try to use ...
0
votes
1answer
339 views
How to Exclude Formula Property in Loading Objects
Recently I had to use formula properties in my NHibernate mapping. My intention was to use the formula properties as query filters and they appear to be working fine in that regard.
However I did not ...
3
votes
1answer
619 views
How to use the formula property in NHibernate mapping
I have a question regarding how to use the formula property to be used in the SQL where clause. Sepcifically, I'd like to use (datepart(hh, getdate())) as the formula and the resulting SQL that I ...
1
vote
1answer
653 views
nHibernate default schema unused in formula
Hey Guys,
I'm using nhibernate 2.2 and ran into a problem that I can't seem to find an answer to. My program is using a default schema assigned in the hibernate.cfg.xml file like this:
<property ...
0
votes
1answer
639 views
Using built-In SQL functions in NHIbernate Formula
I am trying to map a NHibernate formula for a nullable datetime field that would use GetDate() if the column value is null.
The mapping I use is:
Map(x => ...
0
votes
2answers
122 views
NHibernate - I have many, but I only want one!
I have a User which can have many Emails. This is mapped through a List collection (exposed by IEnumerable Emails on the User).
For each User one of the Emails will be the Primary one ("Boolean ...
1
vote
1answer
606 views
How to refer to enum values inside nhibernate formula mapping specification?
I have two entities types:
RunContainer parent entity type
Run child entity type
Run has a property Status, which is of type RunStatus, like so:
public enum RunStatus
{
Created,
Starting,
...
1
vote
1answer
4k views
How to map a property with formula in NHibernate?
I have a class which I want to add a property with using formula attribute.
Here is the mapping that I use in mapping file.
<property name="CurrentUserVote" type="Climate.Domain.Vote, ...
2
votes
2answers
4k views
NHibernate property mapping: columns and formula
When i map columns from the inspected table, i do this:
<property name="InstanceName" type="MyNameUserType, MyApp.MyNamespace">
<column name="Name"/>
<column name="Name2"/>
...