1
1
using System ;
2
2
using System . Collections ;
3
3
using System . Collections . Generic ;
4
- using Iesi . Collections ;
5
4
using Iesi . Collections . Generic ;
6
5
using NHibernate . Engine ;
7
6
using NHibernate . Persister . Entity ;
@@ -16,7 +15,7 @@ public class BulkOperationCleanupAction: IExecutable
16
15
{
17
16
private readonly ISessionImplementor session ;
18
17
private readonly HashedSet < string > affectedEntityNames = new HashedSet < string > ( ) ;
19
- private readonly HashedSet affectedCollectionRoles = new HashedSet ( ) ;
18
+ private readonly HashedSet < string > affectedCollectionRoles = new HashedSet < string > ( ) ;
20
19
private readonly List < string > spaces ;
21
20
22
21
public BulkOperationCleanupAction ( ISessionImplementor session , IQueryable [ ] affectedQueryables )
@@ -29,7 +28,7 @@ public BulkOperationCleanupAction(ISessionImplementor session, IQueryable[] affe
29
28
{
30
29
affectedEntityNames . Add ( affectedQueryables [ i ] . EntityName ) ;
31
30
}
32
- ISet roles = session . Factory . GetCollectionRolesByEntityParticipant ( affectedQueryables [ i ] . EntityName ) ;
31
+ ISet < string > roles = session . Factory . GetCollectionRolesByEntityParticipant ( affectedQueryables [ i ] . EntityName ) ;
33
32
if ( roles != null )
34
33
{
35
34
affectedCollectionRoles . AddAll ( roles ) ;
@@ -65,7 +64,7 @@ public BulkOperationCleanupAction(ISessionImplementor session, ISet<string> quer
65
64
{
66
65
affectedEntityNames . Add ( persister . EntityName ) ;
67
66
}
68
- ISet roles = session . Factory . GetCollectionRolesByEntityParticipant ( persister . EntityName ) ;
67
+ ISet < string > roles = session . Factory . GetCollectionRolesByEntityParticipant ( persister . EntityName ) ;
69
68
if ( roles != null )
70
69
{
71
70
affectedCollectionRoles . AddAll ( roles ) ;
0 commit comments