Invalid call of the function [setAgendaVisibleDesde], first Argument [agendaVisibleDesde] is of invalid type, Cannot cast String [] to a value of type [datetime]
When calling fill, the will try to invoke the setter, but wontcheck if the value is a defined null (https://quick.ortusbooks.com/guide/getting-started/defining-an-entity#null-values) so for a non required datetime it tries to set to an empty string, so it will fail.
Adding in the line 680 of BaseEntity this will fix that (I dont know what happens if tries to set a string field to empty):
if ( isNullValue( key, value ) ) { value = nullValue(); }
Invalid call of the function [setAgendaVisibleDesde], first Argument [agendaVisibleDesde] is of invalid type, Cannot cast String [] to a value of type [datetime]When calling fill, the will try to invoke the setter, but wontcheck if the value is a defined null (https://quick.ortusbooks.com/guide/getting-started/defining-an-entity#null-values) so for a non required datetime it tries to set to an empty string, so it will fail.
Adding in the line 680 of BaseEntity this will fix that (I dont know what happens if tries to set a string field to empty):
if ( isNullValue( key, value ) ) { value = nullValue(); }