/Rhino.Etl.Tests/Joins/LeftJoinUsersToPeopleByEmail.cs
http://github.com/ayende/rhino-etl · C# · 13 lines · 12 code · 1 blank · 0 comment · 2 complexity · 1d16f362baff2cf7c17b16970a07db84 MD5 · raw file
- namespace Rhino.Etl.Tests.Joins
- {
- using System.Collections.Generic;
- using Core;
- public class LeftJoinUsersToPeopleByEmail : BaseJoinUsersToPeople
- {
- protected override bool MatchJoinCondition(Row leftRow, Row rightRow)
- {
- return Equals(leftRow["email"], rightRow["email"]) || rightRow["email"] == null;
- }
- }
- }