s455016457
s455016457
Hi: My code threw an exception after calling the Where method after the ProjectToType method. My codes: ```c# var data = service.GetService().CustomerVisits.Include("CustomerProject").ProjectToType(); data = data.Where(p => p.CustomerProject.Id.Equals(Guid.NewGuid())).ToList().AsQueryable(); ``` Exception Info:...
### Version [email protected] ### Angular Version @angular/core 16.2.0 ### Link to minimal reproduction ```js config={ id: 'dialog-service', width: '500px', maxHeight: '600px', cssClass:"devUiModal", title: '新增书籍', content: BookCreateComponent, backdropCloseable: true, onClose: ()...