1
在正常的C#程序,你可以這樣做:如何獲取服務器時間LinqPad
DateTime ServerDate = Entities.CreateQuery<DateTime>("CurrentDateTime()").AsEnumerable().First();
怎麼樣在LinqPad環境?謝謝。
在正常的C#程序,你可以這樣做:如何獲取服務器時間LinqPad
DateTime ServerDate = Entities.CreateQuery<DateTime>("CurrentDateTime()").AsEnumerable().First();
怎麼樣在LinqPad環境?謝謝。
它不是一個好的解決方案,但它的工作原理
Connection.Open();
var command = Connection.CreateCommand();
command.CommandText = "select GetDate()";
command.ExecuteScalar().Dump();
是啊,如果它的工作原理,它的作品!謝謝。正如一個側面說明,對於MySQL,需要使用「NOW()」來代替。 – Dave