You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ability to perform LINQ-ish batch operations on tables (e.g. tableInstance.get.where(x => x.listened) or tableInstance.delete.where(r => r.feed == feed)). Behind the scenes this is probably just a regular iterator, I don't particularly want to add supplemental indexes to the tables.
Remember the playback metadata object from the player, basically.
The text was updated successfully, but these errors were encountered:
tableInstance.get.where(x => x.listened)
ortableInstance.delete.where(r => r.feed == feed)
). Behind the scenes this is probably just a regular iterator, I don't particularly want to add supplemental indexes to the tables.The text was updated successfully, but these errors were encountered: