Is it possible to use nhibernate.search and nhibernate 3.0 - nhibernate

Guys,
I haven't found any nhibernate.search assemblies compatible with nh3. Looks like it haven't completed yet. I hope I'm wrong.

Looks like that's true. For my needs, I temporary use this brunch https://nhcontrib.svn.sourceforge.net/svnroot/nhcontrib/branches/NHibernate.Search-with-NH-3.0

This was posted on the S#arp Architechture mailing list today by Seif Attar
I have just built and uploaded this to contrib develop branch, you can download from
https://github.com/seif/Sharp-Architecture-Contrib/tree/develop/ReferencedAssemblies
NHibernate.Search is in Nhibernate folder, and Lucene.Net 2.9.2 is in the lucene folder.

Related

NHibernate Source Code Location

can anyone tell me where I can get source code NHibernate 3.2.0.4000 and FluentNHibernate 1.3.0.717? i looked on github but it only seems to have the source for 4.0. Thank u.
You can look on sourceForge for NHibernate
See here for all versions
See here for direct link for 3.2.0 GA
For Fluent look on GitHub for the release tag 1.3

NHibernate.Spatial release for NHibernate 3.2

Just wondering if we have NHibernate.Spatial release for NHibernate latest version 3.2?
What I found only is NHibernate.Spatial version 1.0.0.0 for NHibernate version 2.1.2.
Any ideas?
It looks like there are some breaking changes with version using spatial with NH 3.2 but there is an interesting set of blog posts below which show you how to get it built with NH 3.1 - which may be good enough for you - worked for me.
http://build-failed.blogspot.co.uk/2012/02/nhibernate-spatial-part-1.html
http://build-failed.blogspot.co.uk/2012/02/nhibernate-spatial-part-2.html
http://build-failed.blogspot.co.uk/2012/02/nhibernate-spatial-part-3.html
http://build-failed.blogspot.co.uk/2012/03/nhibernate-spatial-part-4-querying.html
This may be a little late, but NHibernate.Spatial is now available on NuGet and built against the latest NHibernate version (3.3.3) from a fork made by Surya Pratap. See full announcement on my blog here: http://blog.printf.no/?p=1055

Does Symfony 2.0 Support Propel?

Soon Symfony 2.0 will release and i have visited its website i.e www.symfony.com, but in Documentation and ebooks its only giving Doctrine as ORM. Have they stopped supporting Propel?
Because i am using Symfony1.4 with Propel as ORM, and i am comfortable with Propel. Do i have to migrate to Doctrine, or just they will bring on Propel after stable release.
There is a Propel bundle available: http://symfony2bundles.org/willdurand/PropelBundle But I don't know how stable it is.
I'm the creator of this bundle. It works fine and it's up to date :)

Where is the NHibernate 3.0 source repository?

I've been looking everywhere. Maybe I'm just really nearsighted but I can't seem to find it anywhere. Link anyone?
NHibernate 3.0 is also known as the trunk. It has not been officially released yet.
You can find the source code in SVN here:
https://nhibernate.svn.sourceforge.net/svnroot/nhibernate/trunk/
The main website for NHibernate is here:
http://nhforge.org/Default.aspx
If you wanted to download binaries for the trunk instead of source, you could try here:
http://www.hornget.net/packages/orm/nhibernate/nhibernate-trunk

Where can I download the Castle Windsor WcfIntegration Facilities dll?

I would like to integrate Castle Windsor into a WCF project and have read that you can hook it up using the WcfIntegration facility but I am unable to find where to download the dll.
Can anyone help?
WCF Facility did not have an official release yet, as there are still few rough edges and issues we want to address before making the release. Your best option now is to either get the source using link provided in the other answer, or to get it from Horn website. The latter option is compiled against trunk version of other projects, so if you want to use released version of Windsor (2.1.1) you have to compile it yourself.
It's in NuGet now with all of the other 3.0 beta stuff.
Install-Package Castle.WcfIntegrationFacility
http://nuget.org/List/Packages/Castle.WcfIntegrationFacility
Update
Just to follow up, The one in nuget is targeted for Windsor 3.0 beta 1. I found out the hard way that some of the other facilities do not yet support 3.0 beta 1. Specifically, if you're using the NHibernate or AutoTx facilities, you need to stick with a WCF factility compiled for Windsor 2. The latest one seems to be the Jul 29 2011 commit from the git repository, available here.
This will have to suffice until the 3.0 versions of the other facilities are updated. It's already being discussed on the castle users group list.
https://svn.castleproject.org/svn/castle/Facilities/Wcf/trunk from http://www.castleproject.org/subversion.html you have to download the source and build it yourself apperently.