/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/csharp/csharp-505-47-003/main.cs
16 строк
432 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
// Pages/Products/Details.cshtml.cs public class DetailsModel : PageModel { private readonly AppDbContext _context; public DetailsModel(AppDbContext context) => _context = context; public Product? Product { get; set; } public async Task<IActionResult> OnGetAsync(int id) { Product = await _context.Products.FindAsync(id); if (Product == null) return NotFound(); return Page(); } }