Adds Database Structure in C# with Entity Framework

This commit is contained in:
Henry Trumme
2025-04-22 00:59:47 +02:00
parent 370edc17e9
commit 1e6c7a47a4
71 changed files with 6197 additions and 140 deletions

View File

@@ -0,0 +1,21 @@
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace WatchLog.Data
{
[PrimaryKey(nameof(SharedListEnityId), nameof(StreamingPlatformId))]
public class LinkTableSharedStreamingPlatform
{
// --- Foreign Keys ---
public int SharedListEnityId { get; set; }
public int StreamingPlatformId { get; set; }
// --- Navigation Properties ---
[ForeignKey(nameof(SharedListEnityId))]
public virtual SharedListEntity SharedListEntity { get; set; } = null!;
[ForeignKey(nameof(StreamingPlatformId))]
public virtual StreamingPlatform StreamingPlatform { get; set; } = null!;
}
}