if field Photo is mapped to a byte[], it generate code:
public virtual System.Byte[] Photo
{
get { return (System.Byte[])GetValue((int)TblTestFieldIndex.Photo, true); }
set { SetValue((int)TblTestFieldIndex.Photo, value); }
}
I want it is mapto Image and code generate like this
public virtual System.Drawing.Image Photo
{
get { return (System.Drawing.Image)GetValue((int)TblTestFieldIndex.Photo, true); }
set { SetValue((int)TblTestFieldIndex.Photo, value); }
}
Thank you.