I have read this document inferred .net type mapping and noticed that there is a "ip_range" but there is not "ip". I created a model class that is currently of datatype String. Is there a specific IP datatype in C# I can use? Or should I leave it as String for the datatype?
In C# I have, public String Ip { get; set; }
There is no type that implicitly or infer maps to the ip
data type. The options are
.Ip(...)
methodIpAttribute