5_SqlSugar实体中的细节

系列文章目录

第1章 SqlSugar-表到实体、实体到表及库表操作
第2章 SqlSugar增删改操作
第3章 SqlSugar查询操作
第4章 SqlSugar导航查询、反向导航查询、导航插入、导航更新
第5章 SqlSugar实体中的细节

文章目录

  • 系列文章目录
  • 一、time相关注释
    • 1.1、InsertServerTime
    • 1.2、UpdateServerTime
  • 其他
    • CRUD常用属性

一、time相关注释

1.1、InsertServerTime

插入操作:true数据库时间

[SugarColumn(InsertServerTime = true)]
public virtual DateTime InsertDateTime
{
    get { return _insertDateTime; }
    set { _insertDateTime = value; }
}

1.2、UpdateServerTime

更新操作:true数据库时间
当更新一个实体对象时,实体中包含time属性,即便没有设置新的时间,更新操作自动根据数据库时间更新该字段。
如果不需要更新,则不应该加该注解。

[SugarColumn(UpdateServerTime = true)]
public virtual DateTime LastUpdatedDateTime
{
    get { return _lastUpdatedDateTime; }
    set { _lastUpdatedDateTime = value; }
}

其他

CRUD常用属性

5_SqlSugar实体中的细节_第1张图片

你可能感兴趣的:(#,SqlSugar,ORM,c#,visual,studio,sql)