I'm having problems trying to come up with a mapping.
I have a Phone class.
public partial class Phone
{
public virtual PhoneType Type { get; set; }
public virtual string AreaCode { get; set; }
public virtual string Number { get; set; }
public virtual string AdditionalInfo { get; set; }
}
public enum PhoneType
{
Mobile,
Landline,
Work,
ThirdParty
}
This class is used in my Customer class.
The customer can have up to 3 phones.
public class Customer
{
public virtual int Id;
public virtual string FullName;
public virtual Phone Phone1;
public virtual Phone Phone2;
public virtual Phone Phone3;
}
But then there's the persistence problem. I wanted to store/restore this values from the DB as strings
public partial class Phone
{
public const string valuesSeparator = ";";
public override string ToString()
{
int intType = (int)(this.Type);
string strType = intType.ToString();
return
strType + valuesSeparator +
this.AreaCode + valuesSeparator +
this.Number + valuesSeparator +
this.AdditionalInfo;
}
public Phone(string fromDB)
{
string[] values = fromDB.Split(valuesSeparator[0]);
if (values.Length != 4)
{
throw new ArgumentException();
}
string strType = values[0];
int intType = int.Parse(strType);
this.Type = (PhoneType)intType;
this.AreaCode = values[1];
this.Number = values[2];
this.AdditionalInfo = values[3];
}
}
Addmitedly, I'm pretty new to this stuff. But I got nowhere near finding an answer to: how the heck do I map this in FluentNHibernate?
How do I tell NHibernate / FluentNHibernate that, when persisting, this should be hydrated/dehydatred as a string?
Shouldn't this be something mundane? Or my newbieness is making miss the mark here?
IUserTypeis the way to go. I suggest you post your user type after coding it. – Diego Mijelshon Oct 17 '12 at 12:10