up vote 2 down vote favorite
share [g+] share [fb]

I'm building a complex security mechanism to filter access to objects depending on various rights.

As part of this I want to have an initial OR in my query that excludes all possible results from the query before the permissions allow access to certain subsets. In SQL it would look like this:

select   *
from     Table
where    (1 = 0)
or       ( /* various predicates */ )

However, I'm not sure how to create that initial 1 = 0 through the criteria API. I will probably need to create 1 = 1 at some point too but I'm assuming that will be a similar task.

How do I do this?

link|improve this question

73% accept rate
Initial thought is I might have to implement my own criterion which I'm looking at now. – Garry Shutler Nov 5 '09 at 10:24
You might want to look into Rhino Security, it seems to cover what you are trying to achieve. github.com/ayende/rhino-security – BennyM Nov 5 '09 at 10:28
Yeah we've used that as inspiration but we need something different enough to write our own. – Garry Shutler Nov 5 '09 at 10:31
feedback

1 Answer

up vote 1 down vote accepted

Tuna Toksoz has suggested this method which is simple and clear:

var stuff = session.CreateCriteria<Stuff>()
    .Add(Restrictions.Eq(Projections.Constant(1), 0))
    .List<Stuff>();
link|improve this answer
but if you add more criteria with Add() they will actually AND with the 1=0 – Mauricio Scheffer Nov 25 '09 at 22:50
Yes, but you would use it with a disjunction or similar. I'm just demonstrating the technique for achieving a criterion that eliminates all results. – Garry Shutler Nov 26 '09 at 9:14
feedback

Your Answer

 
or
required, but never shown

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