mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-03-26 07:50:55 +08:00
- 修复 ExpressionTree 无法将 double -> 转成 int 的问题;
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using FreeSql;
|
||||
using FreeSql.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
@@ -76,4 +77,7 @@ public class IdentityTable
|
||||
public int id { get; set; }
|
||||
|
||||
public string name { get; set; }
|
||||
|
||||
[JsonProperty, Column(DbType = "datetime")]
|
||||
public DateTime? create_time { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user