help!help me,please!(about serialize)
Hey!help!help me,please!I'm in trouble!Who can tell me how to serialize object into SQL Server.For a instance,I programme some codes as:
<serializable()>
public class employee
private _name as string
private _age as string
public property name() as string
get
return me._name
end get
set(byval value as string)
me._name=value
end set
end property
.........
I use DataSet as interface,I have tried for many times,but failed.I know I'm not clever,but who can help me? please! I am worrying about it.Please in detail,thanks a lot!:)
|