TekH b1075c8b82 Add .NET Framework 4.6.2 support and improve nullability
Updated `DigitalData.UserManager.Domain.csproj` to target .NET Framework 4.6.2 alongside .NET 7.0, 8.0, and 9.0. Corrected `PackageTags` from "user maanger" to "user manager" and added property groups for implicit usings and language versions.

Introduced nullable reference types in entity classes (`BaseEntity`, `ClientUser`, `Group`, `User`, etc.) for enhanced type safety. Updated properties in the `User` and `UserRep` classes to use the new nullable syntax, ensuring consistency across the codebase.

These changes improve compatibility with newer C# features and maintain support for multiple frameworks.
2025-06-26 12:27:24 +02:00

57 lines
1.3 KiB
C#

using System.ComponentModel.DataAnnotations.Schema;
#if NETFRAMEWORK
using System;
#endif
namespace DigitalData.UserManager.Domain.Entities
{
[Table("TBDD_USER_REPRESENTATION", Schema = "dbo")]
public class UserRep : BaseEntity
{
[Column("USER_ID")]
public int? UserId { get; set; }
[Column("REPR_GROUP")]
public int? RepGroupId { get; set; }
[Column("GROUP_ID")]
public int? GroupId { get; set; } = null;
[Column("REPR_USER")]
public int? RepUserId { get; set; }
[Column("VALID_FROM")]
public DateTime? ValidFrom { get; set; }
[Column("VALID_TO")]
public DateTime? ValidTo { get; set; }
[ForeignKey("UserId")]
public virtual User
#if NET6_0_OR_GREATER
?
#endif
User { get; set; }
[ForeignKey("RepGroupId")]
public virtual Group
#if NET6_0_OR_GREATER
?
#endif
RepGroup { get; set; }
[ForeignKey("GroupId")]
public virtual Group
#if NET6_0_OR_GREATER
?
#endif
Group { get; set; }
[ForeignKey("RepUserId")]
public virtual User
#if NET6_0_OR_GREATER
?
#endif
RepUser { get; set; }
}
}