In SQL Server I have a primary key of a Table declared as follow :
[CustomerID] [numeric](18, 0) IDENTITY(1000000,1) NOT NULL,
In ASP.NET Core 2.2 model i mapped this field ad follow :
public decimal CustomerId { get; set; }
How can I make the decimal digits not appear in the application?