13 lines
No EOL
296 B
C#
13 lines
No EOL
296 B
C#
using System.Data.Common;
|
|
|
|
namespace BMA.EHR.Recruit.Service.Extensions
|
|
{
|
|
public static class DataReaderExtension
|
|
{
|
|
public static bool IsDbNull(this DbDataReader dataReader, string columnName)
|
|
{
|
|
return dataReader[columnName] == DBNull.Value;
|
|
}
|
|
|
|
}
|
|
} |