我想在运行时检索配置文件中指定的"dialect"和"connection.driver_class"属性的值.
你知道怎么做吗?
非常感谢,Nicola
感谢您的回答.在该解决方案中我不喜欢的一件事是我需要保持配置并在需要方言知识的方法中传递它.
我发现了其他几种只需要引用ISessionFactory的ISession的方法.
来自ISession:
public static Dialect GetDialect(ISession session) { Dialect dialect = session.GetSessionImplementation().Factory.Dialect; return dialect; }
从ISessionFactory:
public static Dialect GetDialect(ISessionFactory sessionFactory) { var implementor = sessionFactory as ISessionFactoryImplementor; Dialect dialect = implementor.Dialect; return dialect; }