Question: Which database access technique does the following C# statement illustrate? a. JDBC. b. ODBC. c. Language-integrated queries. d. None of the above. public void Example()
Which database access technique does the following C# statement illustrate?

a. JDBC.
b. ODBC.
c. Language-integrated queries.
d. None of the above.
public void Example() { DataClassesContext dc = new DataClassesContext(); var q = from a in dc.GetTable () where a.CustomerName.StartsWith("Seppe") select a; dataGrid.DataSource = q; }
Step by Step Solution
3.30 Rating (162 Votes )
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
