A
Andrus
I need to pass DLinq query to RDLDEsigner.
RDLDesigner does not accept IQueryable<T>.
It accepts SQL select statement in plain text format as data source.
How to get SELECT statement which corresponds to dlinq query
as plain text as it is being sent to server ?
How to create method which allows to grab the sql statement which is being
passed to DataReader without executing DataReader and opening connection.
Something like
Northwind.Customers.Select().GetCommandText()
Andrus.
RDLDesigner does not accept IQueryable<T>.
It accepts SQL select statement in plain text format as data source.
How to get SELECT statement which corresponds to dlinq query
as plain text as it is being sent to server ?
How to create method which allows to grab the sql statement which is being
passed to DataReader without executing DataReader and opening connection.
Something like
Northwind.Customers.Select().GetCommandText()
Andrus.