No idea.
You could try the nhusers group, or perhaps more like the FluentNHibernate
group.
Cheers,
Richard
Sent from my Android phone.
On 30 Dec 2010 19:42, "Yoav" <[email protected]> wrote:
Hi, I'm trying to return a session factory using this code:
return Fluently.Configure()
.Database(MsSqlCeConfiguration.Standard.ShowSql().ConnectionString(path))
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<Project>())
.BuildSessionFactory();
Path is the full path to an .sdf file.
And get this exception:
System.ArgumentException: Format of the initialization string does not
conform to specification starting at index 0.
at System.Data.SqlServerCe.ConStringUtil.GetKeyValuePair(Char[]
connectionString, Int32 currentPosition, String& key, Char[] valuebuf,
Int32& vallength, Boolean& isempty)
What am I doing wrong?