dazinator / CrmAdo

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

Should support Command Parameters #2

Closed dazinator closed 10 years ago

dazinator commented 10 years ago

When querying using the ADO.net data provider, it should support command parameters, for example the following command text should work:-

SELECT c.firstname, c.lastname 
FROM contact
WHERE c.lastname = @lastname

When used with the appropriate command paramaters, i.e:-

 command.Parameters.AddWithValue("@lastname", "Norris");
dazinator commented 10 years ago

Done!