예제 #1
0
파일: F.cs 프로젝트: JabberBoxer/Mapping
 public static IRelationship Relate<T1, T2>() => Relationship.Create<T1, T2>();
예제 #2
0
파일: F.cs 프로젝트: JabberBoxer/Mapping
 public static Binding NewBinding<T1, T2>() => Lib.Binding.Create(Relationship.Create<T1, T2>());
예제 #3
0
파일: F.cs 프로젝트: JabberBoxer/Mapping
 public static IRelationship Relate(Type source, Type target) => Relationship.Create(source, target);