Open
Description
I was wondering if their is a convenient way to use this library to pull metadata from a database. In pure SQL I would generally do this by querying the Information_Schema
view. For example, to get a list of columns in the table MyTableName
, I would do:
SELECT COLUMN_NAME
FROM INFORMATION_SCHEMA
WHERE TABLE_NAME = 'MyTableName'
The type provider does not appear to expose the Information_Schema view, so I was curious if there is standard way to obtain database metadata through this API. Thanks!