rhino-security icon indicating copy to clipboard operation
rhino-security copied to clipboard

Security Infrastructure Library for NHibernate

Results 7 rhino-security issues
Sort by recently updated
recently updated
newest added

This pull request has one side effect. Due to the change of NHibernate to v4.0.1, the Rhino.Security.ActiveRecord will be unusable.

Implemented OnBehalfOf functionality along the lines of your blog post (http://ayende.com/blog/4618/security-models-on-behalf-of) successfully but had to make a couple of changes to rhino security. SecurityInfo isn't constantly used to get the...

This adds an EventListener that deletes security information (EntityReferences) when any entity tracked by Rhino.Security is deleted from the system. I had to use some reflection code to get the...

Additional code to the DeleteEntryEventListener to delete orphaned Permissions and EntitiesGroup associations when an entity is deleted. Regards Dan

I have been trying to figure out why the user-group associations were disappearing in my app and it turns out that when you call DetachUserFromGroup, it detaches all the users...

Executing `GetAssociatedUsersGroupFor` directly after executing `AssociateUserWith` returns the cached associations. `AssociateUserWith` doesn't seem to be invalidating the cache for the `UserToUsersGroups` table. I am using **SysCache2** from **Nhibernate.Contrib**.

I'd like to map which operations are associated with a specific entity type. For example I have a security dialog that follows the general Microsoft conventions. (see the security dialog...