Select from following answers:- Replace Transact-SQL (T-SQL) statements with Entity SQL statements.

- Replace SqlConnection instances with EntityConnection
- Replace SqlCommand instances with EntityCommand
- Replace SqlDataReader instances with EntityDataReader
- All Above
The EntityClient provider is a data provider used by Entity Framework applications to access data described in an EDM. The Entity Framework builds on top of storage-specific ADO.NET data providers by providing an EntityConnection to an underlying data provider and relational database. The EntityCommand class is used to execute an Entity SQL command against an entity model, and the EntityDataReader exposes the results of executing an EntityCommand against an EDM. These types are similar to the corresponding SqlConnection, SqlCommand, and SqlDataReader types. However, entity data provider types require that queries be expressed in Entity SQL, not T-SQL. You must modify query text.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator