mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-23 03:02:51 +08:00

- 增加 IUpdate IgnoreColumns 重载方法,支持传入字符串数组忽略修改; - 完善 FreeSql.DbContext,支持对象操作 + SaveChanges 最后保存操作;
11 lines
275 B
C#
11 lines
275 B
C#
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace FreeSql.Internal.Model {
|
|
public class ColumnInfo {
|
|
public TableInfo Table { get; set; }
|
|
public string CsName { get; set; }
|
|
public Type CsType { get; set; }
|
|
public ColumnAttribute Attribute { get; set; }
|
|
}
|
|
} |