2024-01-04 09:00:44 +08:00
|
|
|
|
namespace ConsoleApp2.Options;
|
|
|
|
|
|
|
|
|
|
public class DatabaseOutputOptions
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据库连接字符串
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? ConnectionString { get; set; }
|
2024-01-17 10:05:29 +08:00
|
|
|
|
public int MaxAllowedPacket { get; set; } = 64*1024*1024;
|
2024-01-04 09:00:44 +08:00
|
|
|
|
}
|