I get this error : Newtonsoft.Json: Self referencing loop detected for property when I run my azure function but i have already added a startupFile with the this code
public override void Configure(IFunctionsHostBuilder builder)
{
JsonConvert.DefaultSettings = () => new JsonSerializerSettings
{
Formatting = Formatting.Indented,
ReferenceLoopHandling = ReferenceLoopHandling.Ignore
};
}