Interface IQueryingEnumerable
- Namespace
- Microsoft.EntityFrameworkCore.Query
- Assembly
- Microsoft.EntityFrameworkCore.dll
Interface that can be implemented by a database provider's IEnumerable implementation to provide the query string for debugging purposes.
This interface is typically used by database providers (and other extensions). It is generally not used in application code.
public interface IQueryingEnumerable
Remarks
See Implementation of database providers and extensions and How EF Core queries work for more information and examples.
Methods
ToQueryString()
A string representation of the query used.
Warning: this string may not be suitable for direct execution is intended only for use in debugging.
string ToQueryString()
Returns
- string
The query string.