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
In previous versions we made the TableEntityRepository only expose ITableEntity.
This was inconvenient since it required downcasting the returned entities to DynamicTableEntity in order to access its additional properties and manipulate them.
The new Azure.Data.Tables we depend on has a much simpler API for TableEntity, which replaces the old DynamicTableEntity with a simple ITableEntity implementation that just adds an IDictionary<string, object interface on top.
We should should make our entity-based repository/partition expose this new TableEntity object so it's a more effective and intuitive addition to the raw tables API.
The text was updated successfully, but these errors were encountered:
In previous versions we made the
TableEntityRepository
only exposeITableEntity
.This was inconvenient since it required downcasting the returned entities to
DynamicTableEntity
in order to access its additional properties and manipulate them.The new
Azure.Data.Tables
we depend on has a much simpler API forTableEntity
, which replaces the oldDynamicTableEntity
with a simpleITableEntity
implementation that just adds anIDictionary<string, object
interface on top.We should should make our entity-based repository/partition expose this new
TableEntity
object so it's a more effective and intuitive addition to the raw tables API.The text was updated successfully, but these errors were encountered: