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
varrepo=TableRepository.Create<Show>(CloudStorageAccount.DevelopmentStorageAccount,"Shows",
x =>$"{x.FromDate.Year}",
x =>$"{x.FromDate:yyyy-MM-dd}-{x.Id}");
In this case, the partition key should not be assumed to be FromDate since we're actually using just the year and that would fail to deserialize the object (if it had a FromDate constructor/property of type DateOnly).
The text was updated successfully, but these errors were encountered:
For example:
In this case, the partition key should not be assumed to be
FromDate
since we're actually using just the year and that would fail to deserialize the object (if it had a FromDate constructor/property of type DateOnly).The text was updated successfully, but these errors were encountered: