Non-derived POCO and Azure Storage
Is it possible to have a non-derived POCO for Azure Table Storage? In other words, a POCO that does not derive from TableEntity or implement ITableEntity ? It seems a step backward to have to have a model which is dependent on the interface or base class, as this causes reference leaks upward in the chain - I cannot set up the model in another tier without it having to know about Azure Storage for either the interface or the base class! Take a look at DynamicTableEntity (ctrl+f for it). It can be used to query and insert entities. Using this type, you won't introduce any dependencies intor