I have a Dataverse Table named "Expenses". There's a "ReceiptImage" image type field.
I have a Camera Control, and a button to save the image to collection named "CapturedPhotos". See the collection structure below

How can I use patch function to add all photos to the dataverse table?
The current formula I am trying to use : Patch(Expenses,First(Filter(Expenses,ExpenseID=PerExpensesGallery.Selected.ExpenseID)),{ReceiptImage:Capturedphotos.Photo})
But the part in red above gives me error.
What's the correct way to achieve this?