[nhusers] Re: What is the status of NHibernate development?

2012-02-03 Thread s_tristan
release is here: > > https://nhibernate.jira.com/secure/ReleaseNote.jspa?projectId=10000&v... > > /Oskar > > 2012/2/2 s_tristan : > > > > > > > > > Who is the lead(s) of the project now? > > Is new features will be added? > > > -- > &g

[nhusers] What is the status of NHibernate development?

2012-02-02 Thread s_tristan
Who is the lead(s) of the project now? Is new features will be added? -- You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to nhusers@googlegroups.com. To unsubscribe from this group, send email to nhusers+unsubscr...@go

[nhusers] PostgreSQL schema update works or not?

2011-11-03 Thread s_tristan
After reading release notes - some of them regarding PostgreSQL. Fnybody have a working solution of upgrading PostgreSQL schema? I also have a Devart PostgreSQL provider, if this provider have a benefits regarding PostgreSQL schema update? Thanks all! -- You received this message because you are

[nhusers] Re: Anybody explain BuildMappings(), please, because I have a problem

2010-09-22 Thread s_tristan
... Since BuildSessionFactory does not change the DB I would see > which is your NH configuration, if and where you are using the > schemaexport and which are the differences in DB between 2, aparently, > calls of schemaexport/schemaupdate > > -- > Fabio Maulo > > El 2

[nhusers] Re: Anybody explain BuildMappings(), please, because I have a problem

2010-09-22 Thread s_tristan
> In the case of NHibernate you can instruct it about how create you DB using > mapping files:http://nhforge.org/doc/nh/en/index.html#quickstart-intro > > > > > > On Wed, Sep 22, 2010 at 8:21 AM, s_tristan wrote: > > My problem that my class mappings successfully

[nhusers] Anybody explain BuildMappings(), please, because I have a problem

2010-09-22 Thread s_tristan
My problem that my class mappings successfully loaded in configuration, but after calling BuildMappings() (that method called also while building session factory) NHibernate adds in some of the tables stupid columns, and that very confuses me. -- You received this message because you are subscrib

[nhusers] Re: How to use the same class (entity) to map different tables?

2010-08-30 Thread s_tristan
1. Implementing your own INamingStrategy 2. Using entity-name On 30 авг, 11:56, harshil wrote: > How can I write the program to dynamically mapping the entity class to > different tables at run time? > > How to use the same class (entity) to map different tables? -- You received this message be

[nhusers] Re: Linq to NHibernate

2010-06-21 Thread s_tristan
On 18 июн, 17:49, Fabio Maulo wrote: > My advise: > 1) IRepository (*no queriable*) > 2) concrete Repository implementation queriable (implements IQueriable) > 3) inside the Repository impl. you are in the "safe area" (the other part of > the app. does not know NH) > 4) depending on the query yo

[nhusers] Re: Problem with filter definition and property's formula

2009-04-27 Thread s_tristan
And the parcer in this case will replace myfi...@myfieldprefix with value from filter definition? On 27 апр, 15:25, Fabio Maulo wrote: > That is not a formulaCan you write something like this ? > select yourfi...@yourfieldprefix from Something > > 2009/4/27 s_tristan > > >

[nhusers] Problem with filter definition and property's formula

2009-04-27 Thread s_tristan
I have a property mapping when I need a dynamic SQL substitution: And corresponding filter definition: Then I send this parameter to a session: string MyVar = "MyVar"; session.EnableFilter("MyFilterDef").SetParameter("DynamicPrefix", MyVar); But this does not work - parser does no

[nhusers] Re: Validator messages

2009-03-03 Thread s_tristan
Can you share this Interpolator? On 3 мар, 11:46, Marc Climent wrote: > Sorry, I meant the possibility of specifying a custom Resource bundle > to override some default messages with localization. > > Finally I am creating my own Interpolator that works like the > DefaultInterpolator but tries t

[nhusers] Re: enforcing rules on the collections

2008-12-21 Thread s_tristan
You can create a custom collection without IUserCollection as was written this: http://blog.benday.com/archive/2007/10/22/23164.aspx On 19 дек, 19:42, epitka wrote: > I do like this better. Had to make small change to interceptor. > >     private IBag _packages; >    [Relationship("packages", Re

[nhusers] Re: Check for unique value

2008-12-19 Thread s_tristan
What about other possible transaction that can occur between checking and saving your entity. This transaction can possible make your entity duplicate. On 18 дек, 23:54, epitka wrote: > Just to continue on this, since it is indirectly related. > > If I have parent<--> child relationship, and thi