[fluent-nhib] NHibernate 4.0.0.GA released

2014-08-17 Thread Jeff Doolittle
Boom! This just happened. https://groups.google.com/forum/#!topic/nhusers/_NTLpl2R4_o Looking forward to the next version of Fluent NHibernate to go with the new NH. --Jeff -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To unsubscribe

[fluent-nhib] NH 4.0.0.Alpha2 Released

2014-06-28 Thread Jeff Doolittle
https://groups.google.com/forum/#!topic/nhusers/D8SWOgXbfz0 Can anyone comment on the state of the Fluent NH project? Who are the active contributors/committers? Will there be a new FNH release to correspond to NH 4? Thanks, --Jeff -- You received this message because you are subscribed to t

[fluent-nhib] Re: Is Fluent NHibernate dead?

2014-03-06 Thread Jeff Doolittle
I'd be willing to help out with getting tests running against SQLite or SqlCE. Let me know what you had in mind and if there are any other issues to address to prepare for NH 4.0. --Jeff On Thursday, March 6, 2014 12:09:13 AM UTC-8, Gleb Chermennov wrote: > > Hello. > I try to maintain the pro

[fluent-nhib] Re: New Fluent NHibernate release - finally!

2013-12-13 Thread Jeff Doolittle
I say it's time to let 3.5 pass on and more forward to 4.0/4.5. On Thursday, December 12, 2013 1:15:53 PM UTC-8, Gleb Chermennov wrote: > > Hello everyone, fresh version of Fluent just hit NuGet. > It's strictly a bugfix release, so please don't expect something glamorous. > Sorry it's been so lon

[fluent-nhib] Re: Good work, keep it up.

2012-02-23 Thread Jeff Doolittle
Running on NH 3.2 is definitely high on my list. :) -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To view this discussion on the web visit https://groups.google.com/d/msg/fluent-nhibernate/-/d19ocDXvIBgJ. To post to this group, send ema

[fluent-nhib] Re: Good work, keep it up.

2012-02-21 Thread Jeff Doolittle
I'm on board to help contribute/maintain and I'm curious to know who else is out there. If there's enough community interest, I'm sure we could start putting something together to keep this project fresh and moving forward. --Jeff -- You received this message because you are subscribed to th

[fluent-nhib] Re: Good work, keep it up.

2012-02-18 Thread Jeff Doolittle
Agreed. -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To view this discussion on the web visit https://groups.google.com/d/msg/fluent-nhibernate/-/SzCCjbPpYoMJ. To post to this group, send email to fluent-nhibernate@googlegroups.com. To

[fluent-nhib] Re: Can automapper handle private readonly backing fields?

2010-04-21 Thread Jeff Doolittle
Issue 396 - Posted On Apr 20, 9:15 am, cliff vaughn wrote: > On Tue, Apr 20, 2010 at 12:01 PM, Jeff Doolittle > wrote: > > > Tell me how and I'll get it done.  I haven't submitted a bug for this > > project before. > > > --Jeff > > >http://flue

[fluent-nhib] Re: Can automapper handle private readonly backing fields?

2010-04-20 Thread Jeff Doolittle
Tell me how and I'll get it done. I haven't submitted a bug for this project before. --Jeff On Apr 19, 12:16 pm, cliff vaughn wrote: > so... have you filed this as a bug with a failing test? > > On Mon, Apr 19, 2010 at 2:39 PM, Jeff Doolittle > wrote: > &

[fluent-nhib] Re: Can automapper handle private readonly backing fields?

2010-04-19 Thread Jeff Doolittle
adonly backing fields, I failed because it appeared impossible. > > Am I totally off my rocker here? :) > > Thanks for any information > Mark Rogers > > On Apr 13, 2:20 pm, Jeff Doolittle wrote: > > > > > It works if you expose a public getter property that has a p

[fluent-nhib] Re: Can automapper handle private readonly backing fields?

2010-04-13 Thread Jeff Doolittle
It works if you expose a public getter property that has a private backing field. Assuming an entity type "Order" with public property "public int Total { { return _total; } }" with backing field "private int _total;" You can do this: AutoPersistenceModel.Override(map => map.References(x => x.

[fluent-nhib] Re: Roadmap for digging through the Automapper source?

2010-01-22 Thread Jeff Doolittle
Sorry, submitted too soo. Let me clean that up a bit: AutoMap.AssemblyOf() .Setup(s => { s.IsComponentType = t => t.Namespace == "Model.Components"; s.GetComponentColumnPrefix = type => type.Name + "_"; }) -- You received this message because you are subscribed to the Google Groups "Fl

[fluent-nhib] Re: Roadmap for digging through the Automapper source?

2010-01-22 Thread Jeff Doolittle
I will typically put my component classes in a different namespace. For example, I'll put my entities in a folder/namespace "Model" and my components in a folder/namespace "Model.Components". With this convention, it is easy to set up the fluent mappings to treat components as components. AutoMap

[fluent-nhib] Re: Version in base class not being mapped

2010-01-18 Thread Jeff Doolittle
to get at the > private property. That way your API remains free of a version member for > other classes interacting with your class. > > On Mon, Jan 18, 2010 at 11:13 AM, Jeff Doolittle > wrote: > > > I downloaded the latest build (614) and I was able to add a Version > &

[fluent-nhib] Re: Version in base class not being mapped

2010-01-18 Thread Jeff Doolittle
t version of FNH are you using? I have 1.0.0.594. > > Cheers > Jon > > On 6 Jan, 22:14, Paul Batum wrote: > > > My understanding is that this is fixed. I'm using an automapped base > > class with aVersionproperty and it works fine. > > > On Thu, Jan 7, 2010

[fluent-nhib] Re: Version in base class not being mapped

2010-01-06 Thread Jeff Doolittle
Does anyone know if a fix for this if forthcoming? --Jeff On Nov 13 2009, 10:18 am, Billy wrote: > I agree with Deeksy.  The version property from a superclass was > mapping automatically previously.  Seems to require a manual mapping > now or it gets completely ignored. > > Billy > > On Nov 5,