From: <fab...@us...> - 2009-01-31 13:02:28
|
Revision: 4008 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4008&view=rev Author: fabiomaulo Date: 2009-01-31 13:02:25 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Fix indentation and xml comment Modified Paths: -------------- trunk/nhibernate/src/NHibernate/IQuery.cs Modified: trunk/nhibernate/src/NHibernate/IQuery.cs =================================================================== --- trunk/nhibernate/src/NHibernate/IQuery.cs 2009-01-30 17:41:12 UTC (rev 4007) +++ trunk/nhibernate/src/NHibernate/IQuery.cs 2009-01-31 13:02:25 UTC (rev 4008) @@ -64,7 +64,7 @@ /// <summary> Return the HQL select clause aliases (if any)</summary> /// <returns> an array of aliases as strings </returns> - string[] ReturnAliases{get;} + string[] ReturnAliases { get; } /// <summary> /// The names of all named parameters of the query @@ -585,21 +585,22 @@ /// </summary> IQuery SetResultTransformer(IResultTransformer resultTransformer); - /// <summary> - /// Get a enumerable that when enumerated will execute - /// a batch of queries in a single database roundtrip - /// </summary> - /// <typeparam name="T"></typeparam> - /// <returns></returns> - IEnumerable<T> Future<T>(); + /// <summary> + /// Get a enumerable that when enumerated will execute + /// a batch of queries in a single database roundtrip + /// </summary> + /// <typeparam name="T"></typeparam> + /// <returns></returns> + IEnumerable<T> Future<T>(); - /// Get an IFutureValue instance, whose value can be retrieved through - /// its Value property. The query is not executed until the Value property - /// is retrieved, which will execute other Future queries as well in a - /// single roundtrip - /// </summary> - /// <typeparam name="T"></typeparam> - /// <returns></returns> - IFutureValue<T> FutureValue<T>(); + /// <summary> + /// Get an IFutureValue instance, whose value can be retrieved through + /// its Value property. The query is not executed until the Value property + /// is retrieved, which will execute other Future queries as well in a + /// single roundtrip + /// </summary> + /// <typeparam name="T"></typeparam> + /// <returns></returns> + IFutureValue<T> FutureValue<T>(); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |