Here are the examples of the csharp api class System.Data.Common.DbDataReader.ToObjects(string, string[], ObjectsChangeTracker) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
3 Examples
0
1. Example
View licensepublic static IEnumerable<T> ToObjects<T>(this DbDataReader reader) { return reader.ToObjects<T>(null, null, null); }
0
2. Example
View licensepublic static IEnumerable<T> ToObjects<T>(this DbDataReader reader, string readerName) { return reader.ToObjects<T>(readerName, null, null); }
0
3. Example
View licensepublic static IEnumerable<T> ToObjects<T>(this DbDataReader reader, string[] excludeFields) { return reader.ToObjects<T>(null, excludeFields, null); }