SidoBytes
SidoBytes
Explore posts from servers
CC#
Created by SidoBytes on 3/23/2025 in #help
c# wpf style
.
9 replies
CC#
Created by SidoBytes on 3/1/2025 in #help
adding asp.net constaint on the class object field
in asp.net efcore :
c#
public class Consultation
{
[Key] // Primary Key
[DatabaseGenerated(DatabaseGeneratedOption.Identity)] // Auto-increment
public int Id { get; set; }

[Required]
public DateOnly Date { get; set; } = DateOnly.FromDateTime(DateTime.UtcNow); // Default to current date

[Required]
public int MedecinId { get; set; } // Foreign Key

[Required]
public int PatientId { get; set; } // Foreign Key

// Navigation Properties
public User User { get; set; }
public Patient Patient { get; set; }
}
c#
public class Consultation
{
[Key] // Primary Key
[DatabaseGenerated(DatabaseGeneratedOption.Identity)] // Auto-increment
public int Id { get; set; }

[Required]
public DateOnly Date { get; set; } = DateOnly.FromDateTime(DateTime.UtcNow); // Default to current date

[Required]
public int MedecinId { get; set; } // Foreign Key

[Required]
public int PatientId { get; set; } // Foreign Key

// Navigation Properties
public User User { get; set; }
public Patient Patient { get; set; }
}
how can i force that User.role == "Medecin" in the Consultation class when inserting
5 replies
MModular
Created by SidoBytes on 11/24/2024 in #questions
does mojo have access modifiers
for example in rust :
struct Foo{
pub public_member:u32
private_member:u32
}
struct Foo{
pub public_member:u32
private_member:u32
}
?
87 replies
MModular
Created by SidoBytes on 11/23/2024 in #questions
does mojo have any graphics api binding ? like webgpu or opengl ?
?
4 replies