goenning / SharpSapRfc

Making SAP RFC calls even easier with .NET
MIT License
84 stars 27 forks source link

single column for date time #11

Closed goenning closed 10 years ago

goenning commented 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