Closed jhashemi closed 9 years ago
else if (propertyInfo.PropertyType == typeof(DateTimeOffset)) { var dateTimeOffset = entity[propertyInfo.Name].DateTimeOffsetValue; propertyInfo.SetValue(toCreate, dateTimeOffset.HasValue ? dateTimeOffset.Value : default(DateTimeOffset), null); }
needs to be added. getting the "not supported by azure table storage" error.
Hi @jhashemi,
Azure table storage services has a limit on supported types outlined in MSDN documentation. DateTimeOffset is unfortunately not supported. You could store it as a string and convert back.
DateTimeOffset
needs to be added. getting the "not supported by azure table storage" error.