Visual Studio 22's Intellisense can make fairly good guesses. Likely its guess-rate will gradually go up, but a human will probably still need to pick among multiple suggestions. So yes, the bot may "write" the suggestions, but a human is still picking among them. Thus saying the bot "wrote" most the code is perhaps misleading even if technically true.
CRUD frameworks are so damned bloated these days that there's lots of repetition for a bot to glom on to. No framework maker seems to strive for DRY, KISS, and parsimony these days, rather uses "scaffolding" to automate bloat. CRUD idioms haven't changed much over the years, yet we keep re-re-re-inventing CRUD frameworks, and bloating them with gimmicks and dependencies.
I'm working on a KISS framework for smaller internal projects to show how it could be done. Specifying the schema itself with "tweak tags" does 85% of the work. "Incremental rendering events" allows one to tweak or overwrite attributes, CSS, and HTML along way so that one is not stuck with declarative-only "logic", a common drawback of most RAD tools.
App code should almost never duplicate info (facts) available in the schema, as it's a DRY violation. For example, one should only have to specify a field is "required" (not nullable*) once and only once. But too many frameworks force one to repeat that fact. App code should mostly be dealing with domain-specific logic NOT covered by the schema itself.
(The issue of how to version schemas comes up, but that's a longer topic.)
* Usually we want "non-white-space-only" when a field is "non-nullable", but most frameworks miss this common idiom and don't fully check for just-white-spaces. CRUD newbies can sure code frameworks up fast, but don't get CRUD, reinventing CRUD gaps.