Skip to content

Release 0.6.0

Compare
Choose a tag to compare
@carl-berg carl-berg released this 03 Feb 15:06
· 23 commits to main since this release

Release notes

7b991fa

  • Fixed bug introduced in 0.5.1 causing not all columns to be set
  • Changed api slightly to simplify setting custom column values. New version works like so
await new DataDude()
    .ConfigureCustomColumnValue((column, value) => 
    {
        if (column.Name == "Active")
        {
            value.Set(new ColumnValue(true));
        }
    })
    .Insert("Employee")
    .Go(connection);
  • Added default provider value for data type real
  • Added type mappings for data types real and timestamp