我正在为我的测试项目使用 sqllite db。
当我在事务中使用 IsolationLevel 时,一切运行完美
using (ITransaction transaction = session.BeginTransaction(IsolationLevel.ReadCommitted))
但我不想IsolationLevel.ReadCommitted
在我的交易中硬编码我想放在我的连接字符串中,我试过这个
<add name="ConnectionString" connectionString="Data Source=...;ISOLATION LEVEL=IsolationLevel.ReadCommitted"/>
但错误仍然与消息"The database is locked !"