Closed goenning closed 10 years ago
Allow mapping of datetime fields in two ways:
[RfcStructureField("DATUM")] public DateTime CreateDate { get;set;} //2014-04-06 00:00:00 [RfcStructureField("UZEIT")] public DateTime CreateTime { get;set;} //0001-01-01 12:20:10
And
[RfcStructureField("DATUM", "UZEIT")] public DateTime CreatedOn { get;set;} //2014-04-06 12:20:10
Allow mapping of datetime fields in two ways:
And