vote up 0 vote down star

I know the configuration for SQL Server Compact edition that Nhibernate (using FluentNhibernate) uses is:

var cfg = Fluently.Configure() .Database(MsSqlCeConfiguration.Standard.Provider("NHibernate.Connection.DriverConnectionProvider")
                        .Dialect("NHibernate.Dialect.MsSqlCeDialect")
                        .Driver("NHibernate.Driver.SqlServerCeDriver")
                        .ConnectionString("Data Source=TestDB.sdf")
                        .ProxyFactoryFactory("NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle"));

Can anybody tell me or give me a link where I can find the same information for SQL Server Enterprise Edition.

Thanks in advance!

flag

50% accept rate
Never mind! I got it. – Saurabh Lalwani Oct 23 at 15:41
1  
Could you either share your solution with us so other can benefit from it, or otherwise please delete your question - thanks! – marc_s Oct 23 at 16:12
Yeah that would be nice. Looking for the same info... – mattRo55 Nov 10 at 14:21

1 Answer

vote up 0 vote down

Yeah that would be nice. Looking for the same info...

link|flag
this is not an answer – Angel Escobedo Nov 10 at 15:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.