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
public class ChannelsHistory
{
[Key]
public string Id{ get; set; }
public List<ChannelsHistoryPeriod> ChannelsHistoryDailies { get; set; } = new List<ChannelsHistoryPeriod>();
public List<ChannelsHistoryPeriod> ChannelsHistoryWeekly { get; set; } = new List<ChannelsHistoryPeriod>();
}
public class ChannelsHistoryPeriod
{
public DateOnly Date { get; set; }
public ulong ViewCount { get; set; }
}
This code to convert to a json (.Net7 and .Net8 supported)
Thank you for reporting. At this moment, our library doesn't yet support the ToJson() options.
However, that's something we are currently looking at in our short-term plan. So we hope the support will come soon, but I cannot provide you with any date yet.
So the issue is really about the ToJson() option not being supported yet
My table class looks like this:
This code to convert to a json (.Net7 and .Net8 supported)
When i do BulkUpdate or BulkMerge , nothing changes, there is no error or exception, the rows are still the same.
SaveChanges works fine.
I am not sure if this type is supported or not?
The text was updated successfully, but these errors were encountered: