Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
How can I pass a raw string instead of template name? If yes, how should I do it?
Example:
public class Controller {
private readonly ITemplateRenderer _templateRenderer;
// ...
_templateRenderer.RenderAsync("Hello {{ name }}", new { Name = "World" });
}
How can I pass a raw string instead of template name? If yes, how should I do it?
Example:
Thanks