在我的模型在asp.net核心時,我腳手架我的數據庫它只允許有兩個小數點,如0.10的數字,但是,我不允許插入四個小數位到我的數據庫。 下面是我的模型。 public class Order
{
public int OrderID { get; set; }
[RegularExpression(@"^\d+.\d{0,4}$", ErrorMessage = "Mus
我是新來asp.net核心MVC框架(在這之前我使用Laravel。) 我有兩個表,國家和狀態,我將使用InnerJoin加入這兩個表。 在我CountryModel,我有4個屬性像下面 public int CountryId { get; set; }
public string CountryName { get; set; }
public int StateId { get; s
我有以下型號: public class Bus
{
public int ID { get; set; }
[Required]
public string From { get; set; }
[Required]
public string To { get; set; }
[Required]
p