私はエンティティを持っています
Entity
{
int Id;
object otherProperties;
List<int> ForeignIds;
}
私は以下を取る挿入SPを書きました:
@Id INT,
@ForeignId INT
の各要素に対してId
と の要素を含む行を挿入する変更マッピングの挿入のために、リストを SP にマップするにはどうすればよいですか?ForeignIds
ForeignId
例えば
Entity(){ id=1; ForeignIds = new List<int>(){2,3};}
挿入します:
ID | 外国人ID
1 | 2
1 | 3