Reputation: 179
I´m using Entity Framework to pull data from a MySQL database. I know I can get the last time a given table has been updated. How can I do this using EF?
Upvotes: 0
Views: 42
Reputation: 39025
You can use Database.SqlQuery Method (String, Object[]) to run the query that returns the desired data.
The TElement
parameter type must be
Upvotes: 1