System.Data.Common.DbDataReader.ToObjects(string, string[], ObjectsChangeTracker)

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 7

1. Example

Project: Kalman.Studio
Source File: MapExt.cs
View license
public static IEnumerable<T> ToObjects<T>(this DbDataReader reader)
		{
			return reader.ToObjects<T>(null, null, null);
		}

2. Example

Project: Kalman.Studio
Source File: MapExt.cs
View license
public static IEnumerable<T> ToObjects<T>(this DbDataReader reader, string readerName)
		{
			return reader.ToObjects<T>(readerName, null, null);
		}

3. Example

Project: Kalman.Studio
Source File: MapExt.cs
View license
public static IEnumerable<T> ToObjects<T>(this DbDataReader reader, string[] excludeFields)
		{
			return reader.ToObjects<T>(null, excludeFields, null);
		}