A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/Cinchoo/ChoETL/wiki/QuickYamlLoad below:

QuickYamlLoad · Cinchoo/ChoETL Wiki · GitHub

To load Yaml file, use ChoYamlReader component to parse it. Sample below shows how to load Yaml file (Emp.yaml)

emps:
    - id: 1
      name: Tom

    - id: 2
      name: Mark
foreach (dynamic e in new ChoYamlReader("Emp.yaml").WithYamlPath("$.emps[*]"))
    Console.WriteLine("Id: " + e.Id + " Name: " + e.Name);
var reader = new ChoYamlReader("Emp.yaml").WithYamlPath("$.emps[*]");
dynamic rec;
 
while ((rec = reader.Read()) != null)
    Console.WriteLine("Id: " + e.Id + " Name: " + e.Name);
public class Employee
{
    public int Id { get; set; }
    public string Name { get; set; }
}
foreach (var e in new ChoYamlReader<Employee>("Emp.yaml").WithYamlPath("$.emps[*]"))
    Console.WriteLine("Id: " + e.Id + " Name: " + e.Name);

Please visit below article for detailed walk-through of Yaml reader

Cinchoo ETL - Yaml Reader


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4