Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3574
Modified Files:
IQueryable.cs NormalizedEntityPersister.cs
Log Message:
fixing xml comments and letting ReSharper do reformatting
Index: NormalizedEntityPersister.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister/NormalizedEntityPersister.cs,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** NormalizedEntityPersister.cs 4 Dec 2004 22:41:29 -0000 1.36
--- NormalizedEntityPersister.cs 31 Dec 2004 21:49:46 -0000 1.37
***************
*** 2,9 ****
using System.Collections;
using System.Data;
- using System.Text;
-
using Iesi.Collections;
!
using NHibernate.Engine;
using NHibernate.Hql;
--- 2,7 ----
using System.Collections;
[...3035 lines suppressed...]
! if( HasWhere )
{
! result = result.Append( " and " + GetSQLWhereString( alias ) );
}
!
return result;
}
!
! /// <summary></summary>
! public override string[ ] IdentifierColumnNames
{
! get { return tableKeyColumns[ 0 ]; }
}
!
}
! }
\ No newline at end of file
Index: IQueryable.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister/IQueryable.cs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** IQueryable.cs 16 Aug 2004 05:22:56 -0000 1.8
--- IQueryable.cs 31 Dec 2004 21:49:46 -0000 1.9
***************
*** 1,8 ****
- using System;
-
using NHibernate.SqlCommand;
using NHibernate.Type;
! namespace NHibernate.Persister
{
/// <summary>
--- 1,6 ----
using NHibernate.SqlCommand;
using NHibernate.Type;
! namespace NHibernate.Persister
{
/// <summary>
***************
*** 10,14 ****
/// by the query language
/// </summary>
! public interface IQueryable : ILoadable
{
/// <summary>
--- 8,12 ----
/// by the query language
/// </summary>
! public interface IQueryable : ILoadable
{
/// <summary>
***************
*** 38,42 ****
/// <param name="path"></param>
/// <returns></returns>
! IType GetPropertyType(string path);
/// <summary>
--- 36,40 ----
/// <param name="path"></param>
/// <returns></returns>
! IType GetPropertyType( string path );
/// <summary>
***************
*** 47,52 ****
/// <param name="includeSublcasses"></param>
/// <returns></returns>
! SqlString QueryWhereFragment(string alias, bool innerJoin, bool includeSublcasses);
!
/// <summary>
/// Given a query alias and a property path, return the qualified column name
--- 45,50 ----
/// <param name="includeSublcasses"></param>
/// <returns></returns>
! SqlString QueryWhereFragment( string alias, bool innerJoin, bool includeSublcasses );
!
/// <summary>
/// Given a query alias and a property path, return the qualified column name
***************
*** 55,59 ****
/// <param name="property"></param>
/// <returns></returns>
! string[] ToColumns(string alias, string property);
}
! }
--- 53,57 ----
/// <param name="property"></param>
/// <returns></returns>
! string[ ] ToColumns( string alias, string property );
}
! }
\ No newline at end of file
|