- 增加 ISelect ToChunk 停止读取的逻辑控制 #360;

This commit is contained in:
28810
2020-07-21 17:40:30 +08:00
parent f2f1495efc
commit cd60c9dbd9
11 changed files with 356 additions and 318 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace FreeSql.Internal.Model
{
public class FetchCallbackArgs<T>
{
public T Object { get; set; }
/// <summary>
/// 是否放弃继续读取
/// </summary>
public bool IsBreak { get; set; }
}
}