Entity Framework Tutorial Second Edition by 2015

Entity Framework Tutorial Second Edition by 2015

Author:2015
Language: eng
Format: epub
Publisher: Packt Publishing


Second, here is the E-SQL counterpart of what was just demonstrated:

using (EntityConnection entityConnection = new EntityConnection(connectionString)) { entityConnection.Open(); String queryString = "Select value e from PayrollEntities.Employee as e"; using (EntityCommand entityCommand = new EntityCommand(queryString, entityConnection)) { using (DbDataReader dataReader = entityCommand.ExecuteReader(CommandBehavior.SequentialAccess)) { while (dataReader.Read()) { Console.WriteLine(dataReader.GetValue(0)); } } } }



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.