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
var options = new TemplateOptions();
options.MemberAccessStrategy.MemberNameStrategy = MemberNameStrategies.SnakeCase;
var model = new { ID = 12345 };
var context = new TemplateContext(model,options);
if (new FluidParser().TryParse("{{ id }}", out IFluidTemplate? template, out var error))
{
Console.WriteLine(template.Render(context));
}
The console has no output
The text was updated successfully, but these errors were encountered:
The console has no output
The text was updated successfully, but these errors were encountered: