Refactor non-nullable entity properties to required
enhancementrefactorgood first issue
For example, change:
```c#
public string LastName { get; set; } = null!;
```
to:
```c#
public required string LastName { get; set; }
```
Should also update in README.md, documentation, etc.
关闭于 2025-12-30 9 条评论