Popularity
2.7
Stable
Activity
6.0
Declining
81
8
23
Code Quality Rank:
L5
Programming language: C#
License: GNU Lesser General Public License v3.0 only
Tags:
ETL
Reactive ETL alternatives and similar packages
Based on the "ETL" category.
Alternatively, view Reactive ETL alternatives based on common mentions on social networks and blogs.
-
Cinchoo ETL
ETL framework for .NET (Parser / Writer for CSV, Flat, Xml, JSON, Key-Value, Parquet, Yaml, Avro formatted files)
Do you think we are missing an alternative of Reactive ETL or a related project?
Popular Comparisons
README
ReactiveETL
Reactive ETL is a rewrite of Rhino ETL using the reactive extensions for .Net.
Here is an example of a simple pipeline that reads data from a table, transform the data, and insert the result in another table.
var result =
Input.Query("input", "SELECT * FROM Users")
.Transform(
row =>
{
string name = (string)row["name"];
row["FirstName"] = name.Split()[0];
row["LastName"] = name.Split()[1];
return row;
}
)
.DbCommand("output", (cmd, row) =>
{
cmd.CommandText = @"INSERT INTO People (UserId, FirstName, LastName, Email) VALUES (@UserId, @FirstName, @LastName, @Email)";
cmd.AddParameter("UserId", row["Id"]);
cmd.AddParameter("FirstName", row["FirstName"]);
cmd.AddParameter("LastName", row["LastName"]);
cmd.AddParameter("Email", row["Email"]);
})
.Execute();