Has anyone ever done row-level security in LLBLGenPro? If so, how?
Asked
Active
Viewed 122 times
1 Answers
1
Have you checked out the authorization framework?

Phil Sandler
- 27,544
- 21
- 86
- 147
-
It looks like it offers just authorization events, but not implementation. – Alex Yakunin Dec 16 '09 at 17:43
-
I don't understand your comment. The authorization framework is the easiest way to implement row level security in LLBLGen AFAIK. – Phil Sandler Dec 16 '09 at 19:35
-
Of course it doesn't implement it, as everyone needs a different way to do security: AD, DB server, thread principal... The authorizer simply calls you to authorize an action, you tell it 'allow it' or 'deny it', and that's it. Using dependency injection, it's setup as simple as it can be, you can even add it to an application in production, using DI and a config file change. – Frans Bouma Mar 18 '11 at 08:44