On Jun 1, 8:49 pm, Dathan Bennett <
dat...@gmail.com> wrote:
> Actually, this might be an NH issue. Looking up the documentation for
> Assembly.Load(string), I see "Loads an assembly given the long form of its
> name. " Sure enough, when I replace my test case
> (Assembly.Load("System.Data.SqlServerCe");) with the long version of the
> assembly name (Assembly.Load("System.Data.SqlServerCe, Version=3.5.1.0,
> Culture=neutral, PublicKeyToken=89845dcd8080cc91");) it works fine. But the
> NH call that throws the error uses the first call. Is this a bug in
> NHibernate, or is my system just missing a config step that allows it to
> resolve "System.Data.SqlServerCe" to the appropriate assembly?
>
> ~Dathan
>
>
>
> On Mon, Jun 1, 2009 at 3:25 AM, Artur <
ArturDorochow...@gmail.com> wrote:
>
> > Hi
>
> > Are you sure you want to rely on the necessary assemblies being in the
> > GAC?
> > I think, this way you lose some control over your application and
> > expose yourself to various problems, e.g. versioning.
>
> > Sql Server Ce can be privately deployed with the application. You can
> > find many materials on this on the web.
> > A good source of information on SqlServerCe is Steve Lasker's blog,
> > for example you can find info on private deployment in this blog post:
>