This message was deleted.
# azure
s
This message was deleted.
t
Unfortunately, input type is different from the output type, so you’d have to do something like
Copy code
ConnectionStrings = this.ParentAppService.ConnectionStrings.Apply(v =>
    v.Select(c => new AppServiceConnectionStringArgs
    {
        Name = c.Name,
        Type = c.Type,
        Value = c.Value
    }))
1
b
I see, thank you!