加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.config 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- Add this element -->
<configSections>
<section name="hibernate-configuration" type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate"/>
</configSections>
<!-- Add this element -->
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<property name="dialect">NHibernate.Dialect.SQLiteDialect</property>
<property name="connection.driver_class">NHibernate.Driver.SQLite20Driver</property>
<!--接下来的一行指定了数据库的位置,为了保证开发时和发行时均有效,请注意其相对位置-->
<!--
<property name="connection.connection_string">Data Source=..\..\..\MaterialMIS.db</property>
-->
<property name="connection.connection_string">Data Source=WGSF_Data.db</property>
<!--
<property name="show_sql">true</property>
-->
<mapping assembly="DomainModel" />
</session-factory>
</hibernate-configuration>
<!-- SQLite数据库的连接串 -->
<appSettings>
<!--接下来的一行指定了数据库的位置,为了保证开发时和发行时均有效,请注意其相对位置-->
<add key="SQLiteConnectionString" value="Data Source=WGSF_Data.db"/>
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化