From: Peter S. <sz...@us...> - 2004-04-20 17:40:28
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14268/NHibernate Modified Files: IQuery.cs Log Message: To be able to insert enums in queries. Index: IQuery.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/IQuery.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IQuery.cs 15 Mar 2004 16:05:53 -0000 1.6 --- IQuery.cs 20 Apr 2004 17:39:44 -0000 1.7 *************** *** 209,213 **** /// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param> /// <param name="val">A non-null instance of a persistent enumeration</param> ! IQuery SetEnum(int position, IPersistentEnum val); /// <summary> --- 209,213 ---- /// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param> /// <param name="val">A non-null instance of a persistent enumeration</param> ! IQuery SetEnum(int position, System.Enum val); /// <summary> *************** *** 223,227 **** /// <param name="name">The name of the parameter</param> /// <param name="val">A non-null instance of a persistent enumeration</param> ! IQuery SetEnum(string name, IPersistentEnum val); /// <summary> --- 223,227 ---- /// <param name="name">The name of the parameter</param> /// <param name="val">A non-null instance of a persistent enumeration</param> ! IQuery SetEnum(string name, System.Enum val); /// <summary> |