Can someone please confirm for me that if I add a user to several groups, and then call RemoveUser, that the user will in fact be removed from the security_UsersToUsersGroups table?

I ask because, in my case, using the latest code, I am seeing that my user Is not being removed from this table.

The only delete query being generated is:

exec sp_executesql N'delete from security_Permissions where [User]=@p0',N'@p0 int',@p0=7

The engine never tries to delete the user from security_UsersToUsersGroups.

Any suggestions or ideas on what might be wrong?

Thanks,

Rick

link|improve this question

Did you try my solution? did it work? – LeftyX Dec 15 '10 at 11:43
feedback

1 Answer

You should try to use DetachUserFromGroup

user1 = unitOfWork.Session.Get<Model.User>(userId);
authorizationRepository.DetachUserFromGroup(user1, "Guests");
unitOfWork.Commit();

This is the query generated:

exec sp_executesql N'DELETE FROM security_UsersToUsersGroups WHERE GroupId = @p0', N'@p0 uniqueidentifier', @p0 = 'ED5C25B6-CED7-4A73-837D-9E3301178A3D'
link|improve this answer
This doesn't work for me either. Under the hood, neither calls end up deleting the data. I posted on their forum but got a "fix it yourself" message back. – rboarman Mar 12 '11 at 0:35
I am having a few problems with rhino-security at the moment. I don't know if I've made the right choice using this product. Anyway, I can confirm the bit of code I've attached here works.Are you using second-level cache? – LeftyX Mar 12 '11 at 9:50
I ended up writng my own code to remove users and groups. I would not use any Rhino code in the future; too many issues and the devs are not responsive at all. – rboarman Sep 5 '11 at 18:54
@rboarman: agree. There's no alternative though. I was thinking about redoing it keeping the good things. – LeftyX Sep 10 '11 at 7:33
The design is good but the implementation leaves a bit to be desired. I'd love to see a DB agnostic implementation of Ayende's design. – rboarman Mar 27 at 17:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.