When processing data in the .NET environment, you may need to convert the DataReader (a data flow that only reads forward) to more easy to manage formats, such as list . This conversion allows you to access and process structured data more efficiently.
Public Static Ienumerable
How to use the method of use
public static IEnumerable Select(this IDataReader reader,
Func projection)
{
while (reader.Read())
{
yield return projection(reader);
}
}
, you can use the following code:
This example converts the row in the DataReader into a list of the Customer object. alternative method: Special method for physical types
Or, you can create a dedicated static method in the Customer entity:
using (IDataReader reader = ...)
{
List customers = reader.Select(r => new Customer {
CustomerId = r["id"] is DBNull ? null : r["id"].ToString(),
CustomerName = r["name"] is DBNull ? null : r["name"].ToString()
}).ToList();
}
Using this method, you can simplify the conversion process:
using (IDAREADER Reader = ...)
{{
List
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3