RazorLight Ошибка.NET Core 1.1 Шаблон разбора

Это мой блочный код

///I have a Class to represent my model

public class Notification
{
    public string Name { get; set; }
    public string Title { get; set; }
    public string Content { get; set; }
} 

У меня есть метод для анализа моей модели

string templatePath = $@"{Directory.GetCurrentDirectory()}\razor_light_dynamic_views\";

IRazorLightEngine engine = EngineFactory.CreatePhysical(templatePath);

var model = new Notification
{
    Name = "Jone",
    Title = "Test Email",
    Content = "This is a test"
};


string result = engine.Parse("template.cshtml", model);

В последней части у меня есть эта ошибка: System.ArgumentException: "Должны включать закрытые члены, если только не создается сборка ref". ParamName "IncludePrivateMembers"

0 ответов

Другие вопросы по тегам