mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 12:28:15 +08:00
- 增加 ISelect ToChunk 停止读取的逻辑控制 #360;
This commit is contained in:
16
FreeSql/Internal/Model/FetchCallbackArgs.cs
Normal file
16
FreeSql/Internal/Model/FetchCallbackArgs.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user