Base solution for your next web application

Activities of "alliance225"

Hello, sorry was away for a while.

No ProduitLibelle is a regular model propertie.

public class Produit : AuditedEntity, IMayHaveTenant { public int? TenantId { get; set; }

 [Required]
 public virtual string Libelle { get; set; }

 [Required]
 public virtual string Code { get; set; }

 public virtual bool Sommeil { get; set; }=false;

 public virtual double PrixAchat { get; set; }

 public virtual int? MoleculeId { get; set; }

 [ForeignKey("MoleculeId")]
 public Molecule MoleculeFk { get; set; }

 public virtual int? ClasseTherapeutiqueId { get; set; }

 [ForeignKey("ClasseTherapeutiqueId")]
 public ClasseTherapeutique ClasseTherapeutiqueFk { get; set; }

 public virtual int? CategoryId { get; set; }

 [ForeignKey("CategoryId")]
 public Category CategoryFk { get; set; }

}

public class Pays : AuditedEntity, IMayHaveTenant
{
    public int? TenantId { get; set; }

    [Required]
    public virtual string Libelle { get; set; }

    public virtual int ReseauId { get; set; }

    [ForeignKey("ReseauId")]
    public Reseau ReseauFk { get; set; }

}

public class Visa : FullAuditedEntity, IMayHaveTenant { public int? TenantId { get; set; }

  [Required]
  public virtual string Numero { get; set; }

  public virtual DateTime DateObtention { get; set; }

  public virtual DateTime DateValidite { get; set; }
  //File

  public virtual Guid? Fichier { get; set; } //File, (BinaryObjectId)

  public virtual int ProduitId { get; set; }

  [ForeignKey("ProduitId")]
  public Produit ProduitFk { get; set; }

  public virtual int PaysId { get; set; }

  [ForeignKey("PaysId")]
  public Pays PaysFk { get; set; }

}

Sample Produit values:

361 1 ARTEDIAM 400MG CPR B/12 ARTE154 False 40761 NULL NULL 2023-10-28 20:37:48.9148423 NULL NULL NULL 1,82 363 1 ARTEDIAM 75MG/5ML SP F/30ML ARTE156 False 40761 NULL NULL 2023-10-28 20:37:48.9148426 NULL NULL NULL 1,35 364 1 CEVIT VIT C 100MG CPR B/10 CEVI102 False 40766 NULL NULL 2023-10-28 20:37:48.9148427 NULL NULL NULL 0,53 367 1 OXAPEN 500MG CPR B/12 OXAP105 False 42041 NULL NULL 2023-10-28 20:37:48.9148428 NULL NULL NULL 1,6

Answer

Thanks for the clear and thorough answer. Chose option 1 and it worked.

Yes, that did it. Thanks

No I did not solve the problem. Did you mean if I accidentally closed the "incident"? No i dit not.

Hello, yes I did. In fact i am able to create MAUI applications.

Hi, sorry it was a corrupt npm installation

Answer

Hello there, I had the same question. This would be very handy

Showing 11 to 17 of 17 entries