FluentNHibernate SQL Server 配置;连接字符串问题

发布于 2024-10-14 09:45:15 字数 1009 浏览 0 评论 0原文

这是我第一次尝试 Fluent NH。我将连接字符串存储在 Properties.Settings 中;

FnhDbString = Data Source=PC\SQLEXPRESS;Initial Catalog=FNHTest;Integrated Security=True

如果我使用 .FromAppSetting 配置 Fluent,则会出现异常:

ArgumentNullException
Value cannot be null. Parameter name: Data Source

如果我使用 .FromConnectionStringWithKey 配置 Fluent,则会出现异常:

NullReferenceException
Object reference not set to an instance of an object.

完整方法:

private static ISessionFactory CreateSessionFactory()
{ 
      return Fluently.Configure()
        .Database(MsSqlConfiguration.MsSql2008
        .ConnectionString(c => c
            .FromAppSetting(Properties.Settings.Default.FnhDbString))
        .Cache(c => c
            .UseQueryCache()).ShowSql())
        .Mappings(m => m.FluentMappings.AddFromAssemblyOf<Product>())
        .BuildSessionFactory();
}

...

那么我在这里做错了什么..?

It's my first attempt on Fluent NH. I store the connection string in Properties.Settings;

FnhDbString = Data Source=PC\SQLEXPRESS;Initial Catalog=FNHTest;Integrated Security=True

If I configure Fluent with .FromAppSetting I get exception:

ArgumentNullException
Value cannot be null. Parameter name: Data Source

If I configure Fluent with .FromConnectionStringWithKey I get exception:

NullReferenceException
Object reference not set to an instance of an object.

The full method:

private static ISessionFactory CreateSessionFactory()
{ 
      return Fluently.Configure()
        .Database(MsSqlConfiguration.MsSql2008
        .ConnectionString(c => c
            .FromAppSetting(Properties.Settings.Default.FnhDbString))
        .Cache(c => c
            .UseQueryCache()).ShowSql())
        .Mappings(m => m.FluentMappings.AddFromAssemblyOf<Product>())
        .BuildSessionFactory();
}

...

So what am I doing wrong here..?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请别遗忘我 2024-10-21 09:45:15

将此:更改

.ConnectionString(c => c.FromAppSetting(Properties.Settings.Default.FnhDbString))

为:

.ConnectionString(Properties.Settings.Default.FnhDbString)

Change this:

.ConnectionString(c => c.FromAppSetting(Properties.Settings.Default.FnhDbString))

to this:

.ConnectionString(Properties.Settings.Default.FnhDbString)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文