/
githubmirror
/
ydb-dotnet-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-dotnet-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/EntityFrameworkCore.Ydb.Samples/Database.Operations.Tutorial/EmployeeProfile.cs
11 строк
295 B
Kirill Kurdyukov
feat: EF samples & refactoring (#430)
28 май 2025, 19:35
Не верифицирован
28 май 2025, 19:35
942ed4c
Код
Авторство
О чём код?
namespace Database.Operations.Tutorial; public class EmployeeProfile { public int Id { get; set; } public required string Phone { get; set; } public required string Email { get; set; } public int EmployeeId { get; set; } public Employee Employee { get; set; } = null!; }