using System; using System.Collections.Generic; using System.Text; namespace Infrastructure.Extensions { public static class StringExtension { /// /// SQL条件拼接 /// /// /// /// public static string If(this string str, bool condition) { return condition ? str : string.Empty; } /// /// 判断是否为空 /// /// /// public static bool IfNotEmpty(this string str) { return !string.IsNullOrEmpty(str); } } }