I want to use custom relation to create a PrefetchPath. Instead of using only the PK column for joining, I want to add one additional column.
I come up with this code but its not working, the MetaData property would not populated.
public static MemberEntity GetWithMetadata(int csmId)
{
using (DataAccessAdapter adapter = new DataAccessAdapter())
{
MemberEntity member = new MemberEntity(csmId);
IPrefetchPath2 prefetchPath = new PrefetchPath2(EntityType.MemberEntity);
IEntityRelation relation = new EntityRelation(RelationType.OneToMany, "MetaData", true);
relation.AddEntityFieldPair(MemberFields.CsmId, MemberMetadataFields.CsmId);
relation.AddEntityFieldPair(MemberFields.ContextsetId, MemberMetadataFields.ContextsetId);
relation.InheritanceInfoPkSideEntity = InheritanceInfoProviderSingleton.GetInstance().GetInheritanceInfo("MemberEntity", true);
relation.InheritanceInfoFkSideEntity = InheritanceInfoProviderSingleton.GetInstance().GetInheritanceInfo("MemberMetadataEntity", false);
IPrefetchPathElement2 pathElement = new PrefetchPathElement2(
new EntityCollection<MemberMetadataEntity>(EntityFactoryCache2.GetEntityFactory(typeof(MemberMetadataEntityFactory))),
relation,
(int)EntityType.MemberEntity,
(int)EntityType.MemberMetadataEntity,
0,
null,
null,
null,
null,
"MetaData",
RelationType.OneToMany);
prefetchPath.Add(pathElement);
adapter.FetchEntity(member, prefetchPath);
return member;
}
}