我有一个实体
Entity
{
int Id;
object otherProperties;
List<int> ForeignIds;
}
我写了一个插入 SP,它需要:
@Id INT,
@ForeignId INT
如何将 List 映射到 SP 以进行修改映射,该修改映射将插入一行,其中的每个元素都包含Id
和一个元素?ForeignIds
ForeignId
例如
Entity(){ id=1; ForeignIds = new List<int>(){2,3};}
将插入:
身份证 | 外籍编号
1 | 2
1 | 3