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