Fabio

Results 4 issues of Fabio

public async Task UpdateOrderItemAsync(OrderItem orderItem) { if (orderItem.OrderLine > 0) { _dataSource.Entry(orderItem).State = EntityState.Modified; } else { orderItem.OrderLine = _dataSource.OrderItems.Where(r => r.OrderID == orderItem.OrderID).Select(r => r.OrderLine).DefaultIfEmpty(0).Max() + 1; // TODO:...

Can you expose how to add a Header and Separator to the NavigationViewItem?

enhancement
help wanted

CS0121 The call is ambiguous between the following methods or properties: 'GroupInfoList.GroupInfoList(IEnumerable)' and 'GroupInfoList.GroupInfoList(IEnumerable)' WinUIGallery C:\WindowAppSDKSample\WinUI-Gallery-main\WinUIGallery\NewControlsPage.xaml.cs 40 Active Why do I get this error when I compile the application?

needs-author-feedback

Could we have the sample application instead of UWP in Windows App SDK or WinUI 3?