This question is locked. New answers and comments are not allowed.
The following code give me a "server side not implemented" error at runtime.
I'm using OA 2011.3.112 against SQLserver 2008.
I saw an old thread on similar subject where it's stated that it has been fixed but it looks like it doesn't apply to this.
public IList<short> VisibleBooks(short userID){ return this.Context.my_roles.Where(r => r.UsersIDs().Contains(userID)).SelectMany<my_role, short>(r => r.VisibleBookIDs()).Distinct<short>().ToList<short>();}I'm using OA 2011.3.112 against SQLserver 2008.
I saw an old thread on similar subject where it's stated that it has been fixed but it looks like it doesn't apply to this.