I used environment variables all the time so dev list in dev environment and real list in prod works great when using pipelines to move app through environments. However upto now I have only been using them with forms so I put the form datasource as the dev list. However If I want to use them with Patch do I do the same thing ? use the mydevlistname in the patch statement?
Patch(
mydevlist
Defaults(mydevlist),
{
Title: "New Record Title",
Description: "Description of the new record",
}
)