yyyymmddhhmmss
エンティティから xml を作成するために以下のクエリを作成しました。フィールドの形式で .NET の日時を取得する必要があるためSLOTTINGTIME
、希望の形式で日時を取得する新しいメソッドを作成することを考えました。
var slottingmessagexml = new XDocument(new XElement("Message",
new XAttribute("ID","SLT"),
new XElement("Record",
new XAttribute("STORENO",slottingmessage.StoreID),
new XAttribute("PICKLOCATION",slottingmessage.PickLocation),
new XAttribute("TPNB",slottingmessage.ProductID),
new XAttribute("SLOTTINGTIME",GetDateTimeInNewFormat(slottingmessage.SlottingDateTime)),
new XAttribute("SLOTTTINGACTION",slottingmessage.SlottingAction))
)
);