ysshir

Results 3 issues of ysshir

Hi, I've been trying to update property types of Model with ModelObject when using toJSON() method. here is my example. ``` class Group extends Model { declare id: number; declare...

typings

DB::select() used to return Database_Query_Builder_Select class **without** connection before, but now it returns **with** connection. And the connection is created by `\Database_Connection::instance()` method. `\Database_Connection::instance()` is defined as public static function...

I have the code like below. ``` Model_Test { ... 'details' => [ 'key_from' => 'id', 'model_to' => 'Model_Child', 'key_to' => 'parent_id', 'cascade_save' => true, ], ... } Model_Child {...