Inline parameter name hints render on the the first chanied method mutiple times
- Dominant language
- F#
- Stars
- 4.3k
- Forks
- 876
- Avg merge
- 4d 11h
- Merged PRs (30d)
- 131
Description
When the same method is chained multiple times, then inline parameter name hints render only on the first call but multiple times

**Repro steps**
Call `Configure` on the same type of settings multiple times
``` F#
services
.Configure<_>(
Reader,
fun (o: EventStoreClientSettings) -> o.ConnectivitySettings.NodePreference <- NodePreference.Follower
)
.Configure<_>(
Writer,
fun (o: EventStoreClientSettings) -> o.ConnectivitySettings.NodePreference <- NodePreference.Leader
)
```
**Expected behavior**
Inline parameter name hints render correctly on each method
**Actual behavior**
Inline parameter name hints render only on the first method
**Related information**
* .NET 7.0
* Visual Studio 2022 17.8.0 Preview 1.0
Contributor guide
Assessment
This issue has not been assessed yet.