zoukankan      html  css  js  c++  java
  • Entity SQL Language六 数字函数、时间函数及其它

    函数

    数字函数:

    db.CreateQuery<double>("Round(1.4)")//四舍五入
    db.CreateQuery<double>("Floor(1.9)")//向下取整,即省去小数部分
    db.CreateQuery<double>("Ceiling(1.1)")//向上取整,无论小数部分多大都进1

    时间函数:

    db.CreateQuery<DateTime>("CurrentDateTime()")//获取当前时间
    db.CreateQuery<DateTime>("CurrentUtcDateTime()")//获取格林威治时间
    db.CreateQuery<DbDataRecord>("SELECT o.RequiredDate, Year(o.RequiredDate), Month(o.RequiredDate), Day(o.RequiredDate), Hour(o.RequiredDate), Minute(o.RequiredDate), Second(o.RequiredDate) FROM Orders AS o");//获取时间的年,月,日,时,分,秒的值

    GUID函数:

    db.CreateQuery<string>("CAST(NewGuid() as System.String)")//生成一个GUID值

    用途:可以利用GUID来进行随机取数据(即OrderBy NewGuid())

    Entity SQL Language的入门知识就介绍到这里。如果有什么问题可以给我博客留言。^^

  • 相关阅读:
    JS常见异常
    Spring boot 的 @Value注解读取配置文件中的00开头的字符串
    常用网址
    IntelliJ使用教程
    eclipse
    swagger
    Mybatis
    Linux常用命令
    阿里云短信
    Flink Checkpoint-轻量级分布式快照
  • 原文地址:https://www.cnblogs.com/chsword/p/ef_esql6.html
Copyright © 2011-2022 走看看