- 修复 ExpressionTree 无法将 double -> 转成 int 的问题;

This commit is contained in:
2881099
2024-12-14 15:38:55 +08:00
parent af34ed845c
commit 13cfbf2566
5 changed files with 259 additions and 226 deletions

View File

@@ -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; }
}