add IRecordsTable to interfaces list

This commit is contained in:
Helmut Merz 2023-12-27 10:52:08 +01:00
parent 81aa9d4e1e
commit 997bffc286

View file

@ -127,7 +127,7 @@ class DataTable(AdapterBase):
return [r for r in self.dataAsRecords() if r[column] == value] return [r for r in self.dataAsRecords() if r[column] == value]
TypeInterfaceSourceList.typeInterfaces += (IDataTable,) TypeInterfaceSourceList.typeInterfaces += (IDataTable, IRecordsTable)
class DataTableSchemaFactory(SchemaFactory): class DataTableSchemaFactory(SchemaFactory):