JsonApiDotNetCore icon indicating copy to clipboard operation
JsonApiDotNetCore copied to clipboard

Refactor non-nullable entity properties to required

Open bkoelman opened this issue 1 month ago • 2 comments

For example, change:

public string LastName { get; set; } = null!;

to:

public required string LastName { get; set; }

Should also update in README.md, documentation, etc.

bkoelman avatar Nov 23 '25 03:11 bkoelman

@bkoelman I'll do this in code and README.md But i don't know where should i update in the documentation.I don't know where is the documentation in the first place

Jonesgodwin avatar Nov 23 '25 11:11 Jonesgodwin

Hi @Jonesgodwin, thanks for offering to help with this!

The documentation can be found in the /docs directory, in the form of markdown files and home/index.html. If you want, you can view the site locally by running build-dev.ps1.

bkoelman avatar Nov 23 '25 13:11 bkoelman

@Jonesgodwin Are you still working on this? Please let me know, I'll take care of it otherwise.

bkoelman avatar Dec 11 '25 14:12 bkoelman

Hi @bkoelman ,

I would be happy to help with this. let me know if i can start.

niteshsinghal85 avatar Dec 11 '25 16:12 niteshsinghal85

@niteshsinghal85 Please go ahead, looking forward to your PR.

bkoelman avatar Dec 14 '25 22:12 bkoelman