|
@@ -43,7 +43,13 @@ namespace GxPress.Service.Implement.PlatformData
|
|
|
FROM
|
|
|
tede_order
|
|
|
WHERE
|
|
|
- IsVip = 1 and CreatedDate>'{nowTime}') AS VipAmount";
|
|
|
+ IsVip = 1 and CreatedDate>'{nowTime}') AS VipAmount,
|
|
|
+ (SELECT
|
|
|
+ COUNT(1)
|
|
|
+ FROM
|
|
|
+ tede_order
|
|
|
+ WHERE
|
|
|
+ IsVip = 1 and CreatedDate>'{nowTime}') AS VipOrderCount";
|
|
|
var connectionString = ConfigHelper.GetValue("Database:ConnectionString");
|
|
|
var database = new Database(DatabaseType.MySql, connectionString);
|
|
|
var connection = database.GetConnection();
|