3 namespace Deveel.Data.Mapping {
6 SourceType = sourceType;
7 SourceMember = sourceMember;
8 TargetType = targetType;
10 IsOptional = isOptional;
13 public Type SourceType {
get;
private set; }
15 public string SourceMember {
get;
private set; }
17 public Type TargetType {
get;
private set; }
21 public bool IsOptional {
get;
private set; }
Relationship(Type sourceType, string sourceMember, Type targetType, RelationshipType relationshipType, bool isOptional)