Hello,
I am getting an error regarding data type. I am saving two fields in the collection, Feature_ID and CPI_Name_ID. I have multiple rows in the collection So i understand that I have to use ForAll to Patch. I have written the following code
ForAll(CFeatureSelection, Patch('[dbo].[Feature_B_Tab]', Defaults('[dbo].[Feature_B_Tab]'),{Feature_ID:CFeatureSelection.Feature_ID, CPI_Name_ID: ABCScreenCast.CPI_Name_ID}))
CFeatureSelection and ABCScreenCast are Collections. CFeatureSelection has two fields, They are of Type Int in SQL Server database, When i type the code above, i get the following error

I am not sure how to convert the data from Collection to int data type? Can someone please help ? thank you