Add EndpointAuth navigation property to RecAction

The RecAction class in RecAction.cs now includes a new
navigation property, EndpointAuth, which is linked to the
EndpointAuthId column via the [ForeignKey] attribute. This
enhances the entity relationship by associating the
EndpointAuthId property with the EndpointAuth entity.
This commit is contained in:
tekh 2025-12-01 14:07:43 +01:00
parent 5584a82d8f
commit 420762a463

View File

@ -31,6 +31,9 @@ public class RecAction
[Column("ENDPOINT_AUTH_ID")]
public long? EndpointAuthId { get; set; }
[ForeignKey("EndpointAuthId")]
public EndpointAuth? EndpointAuth { get; set; }
[Column("ENDPOINT_PARAMS_ID")]
public short? EndpointParamsId { get; set; }