dazinator / CrmAdo

An ADO.NET Provider for Dynamics Crm
6 stars 4 forks source link

Implement DataObjectSelector #12

Closed dazinator closed 10 years ago

dazinator commented 10 years ago

For DDEX support, I need to complete the implementation of a DataObjectSelector.

Essentially this class queries the data source metadata to provide values for the visual studio designer - more specifically it provides data source property information.

I need to obtain infromation about CRM equivalent to the following SQL query against:

    SELECT [Server] = SERVERPROPERTY('ServerName'), 
    [Instance] = SERVERPROPERTY('InstanceName'),
    [Login] = SUSER_SNAME(SUSER_SID()), 
    [Database] = DB_NAME(), 
    [User] = USER_NAME(), 
    [Schema] = SCHEMA_NAME()
dazinator commented 10 years ago

done