---
title: projectedValue
framework: swiftui
role: symbol
role_heading: Instance Property
path: swiftui/sectionedfetchrequest/projectedvalue
---

# projectedValue

A binding to the request’s mutable configuration properties.

## Declaration

```swift
@MainActor @preconcurrency var projectedValue: Binding<SectionedFetchRequest<SectionIdentifier, Result>.Configuration> { get }
```

## Discussion

Discussion This property behaves like the projectedValue of a FetchRequest. In particular, SwiftUI returns the value associated with this property when you use SectionedFetchRequest as a property wrapper on a SectionedFetchResults instance and then access the results with a dollar sign ($) prefix. The value that SwiftUI returns is a Binding to the request’s SectionedFetchRequest.Configuration structure, which dynamically configures the request.

## See Also

### Configuring a request dynamically

- [SectionedFetchRequest.Configuration](swiftui/sectionedfetchrequest/configuration.md)
