フィールドを非同期で読み取ることに何かメリットはありますか?
私が次のものを持っているかどうか言ってください:
SqlDataReader reader = await cmd.ExecuteReaderAsync();
while (await reader.ReadAsync())
{
try
{
if (reader.IsDBNull(COL_NAME))
{
continue;
}
user = new User();
user.Id = reader.GetInt32(COL_ID);
IsDBNullAsync
andなどを使用することで、実際にメリットはありますGetInt32Async
か?