I am doing some queries using Entity SQL. I can't use LINQ as the queries are generated at run time.
Consider the following tables/classes
class Note
{
string Text { get; set; }
string Author { get; set; }
}
class Report
{
string Name { get; set; }
DateTime Date { get; set }
Note[] Notes { get; set; }
}
I would like to search through my Reports and find reports that have the word 'help' in the notes.
I would like to be able to perform the following query:
SELECT VALUE r FROM Reports AS r
WHERE
r.Notes.Text LIKE '%help%'
I know I can accomplish what I want do this:
SELECT VALUE n.Report FROM Notes AS n
WHERE
n.Text LIKE '%help%'
But the problem is that this really messes with my ESQL generation framework. Is there any way to query the 'Reports' table looking for matching r.Notes.Text?
EDIT: The following works:
SELECT VALUE r FROM Reports AS r
WHERE
EXISTS(
SELECT n FROM r.Notes AS AS n
WHERE n.Text LIKE '%help%'
)
So I guess my question is 'is there a cleaner/more efficient way?'.