[
https://issues.apache.org/jira/browse/IGNITE-5783?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16304500#comment-16304500
]
Pavel Tupitsyn commented on IGNITE-5783:
----------------------------------------
Proposed design: add {{ICacheQueryable.Explain()}} method:
{code}
var qry = cache.AsCacheQueryable().Where(x=>x.Key > 3);
string explanation = qry.ToCacheQueryable().Explain();
{code}
> .NET: LINQ queries should provide the ability to generate the SQL query plan
> ----------------------------------------------------------------------------
>
> Key: IGNITE-5783
> URL: https://issues.apache.org/jira/browse/IGNITE-5783
> Project: Ignite
> Issue Type: New Feature
> Components: platforms
> Affects Versions: 2.1
> Reporter: Michael Griggs
> Priority: Minor
> Labels: .NET, newbie
>
> At present, the only way to see the query plan generated by a LINQ query in
> C# is to:
> # Call {{GetFieldsQuery()}}
> # Prepend the string {{"explain "}} to the resulting string
> # execute the query in the step above and retrieve the plan
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)