From: Michael D. <mik...@us...> - 2004-10-29 05:58:21
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17342/NHibernate/Engine Modified Files: ISessionFactoryImplementor.cs Log Message: NH-90 : code for a pluggable cache. Added a Settings class and removed some old hibernate properties that don't apply to .net. Index: ISessionFactoryImplementor.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/ISessionFactoryImplementor.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ISessionFactoryImplementor.cs 13 Sep 2004 04:47:45 -0000 1.9 --- ISessionFactoryImplementor.cs 29 Oct 2004 05:58:06 -0000 1.10 *************** *** 63,70 **** bool EnableJoinedFetch { get; } ! /// <summary> ! /// Are scrollable <c>ResultSet</c>s supported ! /// </summary> ! bool UseScrollableResultSets { get; } //TODO: Depricate, as there is no such thing /// <summary> --- 63,70 ---- bool EnableJoinedFetch { get; } ! // /// <summary> ! // /// Are scrollable <c>ResultSet</c>s supported ! // /// </summary> ! // bool UseScrollableResultSets { get; } //TODO: Depricate, as there is no such thing /// <summary> *************** *** 118,131 **** string GetImportedClassName(string name); ! /// <summary> ! /// The ADO.NET batch size ! /// </summary> ! int ADOBatchSize { get; } //TODO: Depricate, should always be 0 ! /// <summary> ! /// Set the fetch size ! /// </summary> ! /// <param name="command"></param> ! void SetFetchSize(IDbCommand command); } } --- 118,131 ---- string GetImportedClassName(string name); ! // /// <summary> ! // /// The ADO.NET batch size ! // /// </summary> ! // int ADOBatchSize { get; } //TODO: Depricate, should always be 0 ! // /// <summary> ! // /// Set the fetch size ! // /// </summary> ! // /// <param name="command"></param> ! // void SetFetchSize(IDbCommand command); } } |