I was given SQL sever database to rebuild a website for someone it has these data types:
- money
- bit
I am currently creating an MVC model and the data types are not recognized in MVC
public class Beds
{
public int BedID { get; set; }
public Bit Private { get; set; } <------not recognized
public Money OccupiedRate { get; set; } <------not recognized
public Bit HoldingRate { get; set; } <------not recognized
}
What are the best alternative datatypes in MVC?