fredzvt
fredzvt

Reputation: 331

Is there a way to log the actually executed SQL query from Simple.Data?

I'm looking for a feature much like the Log property in Linq DataContext.

Upvotes: 2

Views: 155

Answers (1)

Mark Rendle
Mark Rendle

Reputation: 9414

All executed SQL is written to the Trace, so you can access is using a TraceListener.

Upvotes: 3

Related Questions