3개의 좋아요
하이라이트
- *Blazor
QuickGrid구성 요소
그리드 컴포넌트가 Blazor의 구성요소로 들어옵니다.
<QuickGrid Items="@people">
<PropertyColumn Property="@(p => p.PersonId)" Title="ID" Sortable="true" />
<PropertyColumn Property="@(p => p.Name)" Title="Name" Sortable="true" />
<PropertyColumn Property="@(p => p.BirthDate)" Title="Birth date" Format="yyyy-MM-dd" Sortable="true" />
</QuickGrid>
@code {
record Person(int PersonId, string Name, DateOnly BirthDate);
IQueryable<Person> people = new[]
{
new Person(10895, "Jean Martin", new DateOnly(1985, 3, 16)),
new Person(10944, "António Langa", new DateOnly(1991, 12, 1)),
new Person(11203, "Julie Smith", new DateOnly(1958, 10, 10)),
new Person(11205, "Nur Sari", new DateOnly(1922, 4, 27)),
new Person(11898, "Jose Hernandez", new DateOnly(2011, 5, 3)),
new Person(12130, "Kenji Sato", new DateOnly(2004, 1, 9)),
}.AsQueryable();
}
- *jiterpreter로 Blazor WebAssembly 성능 개선
드디어어 인터프리터에 JIT 기능이 들어가기 시작하는군요!

- 여러 FromBody 속성을 감지하는 새로운 분석기
- 더욱 탄력적인 통합을 지원하는 ProblemDetails의 새로운 API
- ObjectPool의 새로운 IResetable 인터페이스
- 명명된 파이프 전송의 성능 개선
4개의 좋아요
