最初にコードと注釈を使用して、エンティティ フレームワーク 6 で一方向の多対多の関連付けを作成することは可能ですか? 例:
class Currency
{
public int id { get; set; }
}
class Country
{
public int id { get; set; }
// How i can annotate this property to say EF that it is many-to-many
// and it should create mapping table?
// I don't need navigation property to Country in Currency class!
public virtual IList<Currency> currencies { get; set; }
}
Java + JPA アノテーションでは、次の方法で必要なものを実装できます。
@OneToMany
@JoinTable(name = "MAPPING_TABLE", joinColumns = {
@JoinColumn(name = "THIS_ID", referencedColumnName = "ID")
}, inverseJoinColumns = {
@JoinColumn(name = "OTHER_ID", referencedColumnName = "ID")
})
それで、EFには同等の機能がありますか?