Переменная инициализации контекста Liquid C# с типом T
ITemplateContext ctx = new TemplateContext();
List<Orders> ProductList = new List<Orders> {
new Orders {OrderId = 1,ProductName="Some name",Quantity =30},
new Orders {OrderId = 1,ProductName="Some name1",Quantity =30},
new Orders {OrderId = 1,ProductName="Some name2",Quantity =30} };
ctx.DefineLocalVariable("context", new LiquidCollection(ProductList));
Определить жидкостную коллекцию с ошибками списка. Можно ли определить универсальную коллекцию типа T как ITemplateContext-> LocalVariable
1 ответ
ITemplateContext ctx = new TemplateContext();
List<Orders> ProductList = new List<Orders>
{
new Orders {OrderId = 1,ProductName="Some name",Quantity =30},
new Orders {OrderId = 1,ProductName="Some name1",Quantity =30},
new Orders {OrderId = 1,ProductName="Some name2",Quantity =30}
};
ctx.DefineLocalVariable("context", ProductList.ToLiquid());
Использование с помощью Liquid.NET.Utils;