SSIS 脚本组件:获取用于创建对象的子记录
开始工作了 - 在下面发布了我的解决方案,但想知道是否有更好的方法
大家好,
我正在尝试为数据库中新创建的(迁移后)域对象创建域事件。
对于没有任何内部子对象的对象,使用脚本组件可以很好地工作。问题在于如何让子行向事件对象添加信息。
前任。客户->客户地点。
我正在脚本组件中创建事件 - 作为转换 - (参考我的域事件模块),然后创建发送有关事件的序列化信息作为列值。输入行当前提供父对象的数据。
请指教。
问候,
Mar
编辑 1
我想补充一点,当前我正在进行处理,
public override void Input0_ProcessInputRow(Input0Buffer Row)
我正在寻找类似在此函数中
通过数据行循环创建数据读取器之类的东西 ->创建子 objecta 并将其添加到父集合中
仍然在 google 上,PreExecute 和 ProcessInput 似乎值得一看。
Got it working - Posted My solution below but will like to know if there is better way
Hello All
I am trying to create Domain Event for a newly created (after migration) domain object in my database.
for Objects without any internal child objects it worked fine by using Script Component. The problem is in how to get the child rows to add information to event object.
Ex. Customer-> Customer Locations.
I am creating Event in Script Component- as tranformation- (have reference to my Domain event module) and then creating sending serialized information about event as a column value. The input rows currently provide data for the parent object.
Please advise.
Regards,
The Mar
Edit 1
I would like to add that current I am doing processsing in
public override void Input0_ProcessInputRow(Input0Buffer Row)
I am looking for something like create a a data reader in this function
loop through data rows -> create child objecta nd add it to parent colelction
Still on google and PreExecute and ProcessInput Seems something to look at .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我的解决方案。我是 SSIS 的新手,所以这可能不是最好的解决方案。
需要注意的一件事是创建连接的另一种方法是
从connectionManager获取连接字符串并使用它来创建OLEDB连接。
This is my solution. I am a total newbie in SSIS , so this may not be the best solution.
One thing to note is that a different approach to create connection is to
get the connection string from connectionManager and use it to create OLEDB connection.