public static Relationship BuildHasA(EntityType type, Metadata with) { return new Relationship("has a", type) { With = with }; }
//name //from //to? public Relationship(string name, EntityType type) : base(name, type) { }
public Metadata(string name, EntityType type) { Name = name; EntityType = type; Relationships = new List<Relationship>(); }