• Martin Devillers's avatar
    FIX: Properties of type Table<T, TId> are not initialized · 1e8011ce
    Martin Devillers authored
    Table properties that implement Table<T,TId> instead of Table<T> are not recognized during the initialization of the Database<T> class. As a result, these properties remain uninitialized after the call to Database<T>.Init().
    
    // Works fine
    public Table<Person> Persons { get; set; }
    
    // Remains 'null' after Init
    public Table<Car, Guid> Cars { get; set; }
    1e8011ce
Name
Last commit
Last update
..
Properties Loading commit data...
Dapper.Rainbow.csproj Loading commit data...
Database.cs Loading commit data...
IgnorePropertyAttribute.cs Loading commit data...
Snapshotter.cs Loading commit data...
SqlCompactDatabase.cs Loading commit data...