EF5 のプレリリース版を使用し、最初にコードを実行しています。OrdersモデルとProductsモデルがあります (many<>many の関係)。OrderID、ProductId、Quantity フィールドを持つOrderItemsモデルを作成しました。リンクテーブルの自動生成ではありません。以下はコードです:
Imports System.ComponentModel.DataAnnotations
Public Class OrderItems
Public Property OrderID As Long
Public Property ProductID As Long
Public Property Quantity As Integer
End Class
必須であることを示す注釈を付けたり、関連付けタグを使用して明示的にリンクしたりする必要がありますか?