Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkPflug committed Mar 20, 2024
1 parent 07c4c6a commit a6f722c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/Sylvan.Data/DataColumn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,16 +167,16 @@ public int GetData<TData>(DbDataReader reader, TData[]? buffer, long dataOffset,

public object GetValue(DbDataReader reader)
{
return reader.GetValue(ordinal);
return this.reader.GetValue(ordinal);
}

public TValue GetValue<TValue>(DbDataReader reader)
{
return reader.GetFieldValue<TValue>(ordinal);
return this.reader.GetFieldValue<TValue>(ordinal);
}

public bool IsDbNull(DbDataReader reader)
{
return reader.IsDBNull(ordinal);
return this.reader.IsDBNull(ordinal);
}
}

0 comments on commit a6f722c

Please sign in to comment.