Query interceptor to return true if the entity is in a list of items in ado.net data services - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T17:01:31Zhttp://stackoverflow.com/feeds/question/733240http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/733240/query-interceptor-to-return-true-if-the-entity-is-in-a-list-of-items-in-ado-net-d0Query interceptor to return true if the entity is in a list of items in ado.net data servicesJames_21952009-04-09T07:49:13Z2009-07-03T01:05:20Z
<p>I'm using ado.net data services and want to implement row level security in the query interceptor to limit the data to only return data that the user is allowed to see.
The complexity comes in in that the user name for the the user is on another table. So I thought I could retrieve a list of events that the user can see according to the entry in the OnlineSubscription table for that user and then return whether the current event matches any entries that are returned as follows:</p>
<pre><code>[QueryInterceptor("Events")]
public Expression<Func<Events, bool>> QueryEvents()
{
var allowedEventList = (from os in context.OnlineSubscription
from e in os.Events
where os.UserName == HttpContext.Current.User.Identity.Name
select e;
return e => events.Intersect(new List<Events>
{
e
}).Any();
}
</code></pre>
<p>However this throws a "Not implemented" exception. So my question is: Is there a right way to compare the current entity to a list of entities in the query interceptor? </p>
<p>EDIT: I've also tried:</p>
<pre><code>return e => events.Any(evnt => evnt.Event_Key == e.Event_Key);
</code></pre>
<p>without any success (once again getting the "Not implemented" exception).</p>
http://stackoverflow.com/questions/733240/query-interceptor-to-return-true-if-the-entity-is-in-a-list-of-items-in-ado-net-d/759048#7590481Answer by James_2195 for Query interceptor to return true if the entity is in a list of items in ado.net data servicesJames_21952009-04-17T04:38:02Z2009-04-17T04:38:02Z<p>Apparently this fails because by using the lambda expression events.Any... it's already querying in the initial context (ie. querying on Events straight) and then when you add the events.Any clause it also tries to query on the new context (ie. the nested "from" of Events within OnlineSubscription) so it understandably throws an exception.</p>
<p>I then used:</p>
<pre><code>[QueryInterceptor("Events")]
public Expression<Func<Events, bool>> QueryEvents()
{
return e => e.OnlineSubscription.Any(os => os.UserName == HttpContext.Current.User.Identity.Name);
}
</code></pre>
<p>Which works since this is just querying in the same context as the initial query and merely traverses through relationships.</p>
http://stackoverflow.com/questions/733240/query-interceptor-to-return-true-if-the-entity-is-in-a-list-of-items-in-ado-net-d/1077409#10774090Answer by Michael for Query interceptor to return true if the entity is in a list of items in ado.net data servicesMichael2009-07-03T01:05:20Z2009-07-03T01:05:20Z<p>Really? I'm getting a "Not Implemented" exception with this code:</p>
<pre><code>[QueryInterceptor("Products")]
public Expression<Func<Product, bool>> QueryProducts()
{
return p => p.User.Username == HttpContext.Current.User.Identity.Name;
}
</code></pre>
<p>It works fine if I filter by a property on the Product object itself, but not via any of it's relationships.</p>