ContosoUniversityDotNetCore-Pages icon indicating copy to clipboard operation
ContosoUniversityDotNetCore-Pages copied to clipboard

With Razor Pages

Results 17 ContosoUniversityDotNetCore-Pages issues
Sort by recently updated
recently updated
newest added

I select an Instructor, go to the Edit page and clear everything out and hit save. I then get a script error what _.reject() is not a function in showSummary()....

Not sure if I have done something wrong or if there is a setting I have missed. I grabbed your master branch and it is doing the same. Repro: -...

I tried adding the following attribute to [this line](https://github.com/jbogard/ContosoUniversityDotNetCore-Pages/blob/6844ea0cfd3a1cf6250764995a5a94671660f483/ContosoUniversity/Pages/Students/Create.cshtml.cs#L39): `[Display(Name = "Data de Início")]` The rendered output is: ![image](https://user-images.githubusercontent.com/8507649/124159183-3927c780-da71-11eb-89c8-1c1e8c5703d5.png) Upon investigation, I found [this portion of code in file TagConventions.cs](https://github.com/jbogard/ContosoUniversityDotNetCore-Pages/blob/6844ea0cfd3a1cf6250764995a5a94671660f483/ContosoUniversity/Infrastructure/Tags/TagConventions.cs#L26):...

Hi, Thank you for the work done on this project. It taught me a lot! I would like to know more about the `config.js` that you are refering to in...

- Using nameof expression for table names - Refactored finding an entity in the modelbinder - Expression body for one liners in tag builders

My Create handler uses AutoMapper to map from command to entity. ``` public async Task Handle(Command command, CancellationToken cancellationToken) { var entity = _mapper.Map(command); await _db.ExampleEntity.AddAsync(entity, cancellationToken); await _db.SaveChangesAsync(cancellationToken); return...

Hey Thanks for sharing for For Functionality any suggestion on the current solution.

Thanks for starting such a great project to provide a guidelines for building a scalable application. I'm really glad if you provide guidelines or migrate this project based on blazor...

Is it expected that FluentValidation is not invoked when running tests? Since it's using FluentValidation.AspNetCore it's only being invoked through the MVC pipeline, which is bypassed from the tests. I...