Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用流畅的 NHibernate。我想计算在应用程序中创建和存在的会话数。有什么方法可以计算吗?
请分享您的观点和建议。
创建配置时,还要执行以下操作:
var config = new Configuration(); config.DataBaseIntegration(db => { .. }); config.SessionFactory().GenerateStatistics();
然后看看:
SessionFactory.Statistics.EntityFetchCount