I am using this EF 6 PLUS library, and I am trying to do future raw query, something like this
context.Database.SqlQuery<SomeClass>("query here").Future();
but there is not such option in this library, I also tried using DeferredFirst(), DeferredSingle() of this library but no luck, those methods don't let me insert raw queries.
How can I achieve this with this library or another one?