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

2014-03-24 Thread Alexander I. Zaytsev
Hi Gleb, can you please explain what are you trying to achieve? 2014-03-25 8:52 GMT+13:00 Gleb Chermennov : > Ok, I did try out to use SQLite for running NHibernate tests and I failed. > But I still managed to install SQLite NuGet package properly, which I guess > I can put on my CV as a separat

Re: [fluent-nhib] Re: Nuget release schedule

2013-09-30 Thread Alexander I. Zaytsev
It is October already 2013/10/1 Gleb Chermennov > What I'm thinking is I need to do release in October. Not sure it can be > called a release policy :) > About more frequent releases - you can surely help, by submitting pull > requests with new features or bugfixes :) Contributions are always w

Re: [fluent-nhib] Re: Database Schema auto create?

2011-08-14 Thread Alexander I. Zaytsev
My suggestion is that you should use some kind of convention. Try following one public class SchemaNameConvention : IClassConvention, IJoinedSubclassConvention { public void Apply(IClassInstance instance) { instance.Schema("MySchema"); } public void Apply(IJoinedSubclassI

[fluent-nhib] Re: Database Schema auto create?

2011-08-13 Thread Alexander I. Zaytsev
new SchemaUpdate(configuration).Execute(false, true); ? -- 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/-/fImbiPdTnQwJ. To post to this

[fluent-nhib] Re: Component ColumnPrefix is broken in 1.2.0.712 (for NH3)

2011-07-21 Thread Alexander I. Zaytsev
Yes it is. -- 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/-/YlHOchl10MEJ. To post to this group, send email to fluent-nhibernate@googlegroups.com.

[fluent-nhib] Re: Component ColumnPrefix is broken in 1.2.0.712 (for NH3)

2011-07-21 Thread Alexander I. Zaytsev
For me it is not working to. I have the PropertyConvention: class CustomColumnNameConvention : IPropertyConvention { public void Apply(IPropertyInstance instance) { instance.Column(instance.Name.ToUpper()); } } and I've