Skip to content

Commit

Permalink
Fix | bug in SqlBuffer.get_SqlGuid
Browse files Browse the repository at this point in the history
since it is uploaded to GitHub at least
  • Loading branch information
wilbit committed Jan 21, 2024
1 parent daec178 commit 318d870
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ internal SqlGuid SqlGuid
{
if (StorageType.Guid == _type)
{
return new SqlGuid(_value._guid);
return IsNull ? SqlGuid.Null : new SqlGuid(_value._guid);
}
else if (StorageType.SqlGuid == _type)
{
Expand Down

0 comments on commit 318d870

Please sign in to comment.