我无法插入或更新从外部内容类型创建的外部列表中的项目
以下是错误:
我创建了一个名为“产品状态”的外部内容类型。它具有所有可能的操作,例如读取/创建/更新等
这是表结构:
rowguid据我所知, 字段是由 SQL Server 复制创建的。
创建外部内容类型时,它不允许我不选择 rowguid!
更新操作
看来,当它创建外部内容类型“产品状态”时,更新操作试图将 rowguid 更新为 null,但事实并非如此。它根本不应该更新该字段,但是我无法将其从创建的外部内容类型项目中排除。
I am unable to INSERT or UPDATE an item in my external list created from an external content type
Here is the error:
I have created an external content type called "Product Status". It has all the operations possible e.g. Read / Create / Update etc
Here is the table structure:
The rowguid field as far as I know was created by the SQL Server replication.
When creating my external content type, it does not allow me to not select the rowguid!
Update Operation
It seems that when it creates the external content type "Product Status", the update operation is trying to update the rowguid to null which it cannot be. It shouldn't update that field at all, however I cannot exclude it from my external content type item created.
发布评论
评论(1)
服务器上不再需要复制,因此将其删除。现在工作正常。
Replication was no longer required on the server, so it was removed. Working fine now.