namespace Kean.Infrastructure.Database { /// /// 连接方式 /// public enum Join { /// /// 内连接 /// Inner, /// /// 左连接 /// Left, /// /// 右连接 /// Right } }