StringExtension.cs 399 B

1234567891011121314151617
  1. namespace MySystem
  2. {
  3. public static class StringExtension
  4. {
  5. #region sql条件拼装
  6. public static string Like(this string input, string Field, string Value)
  7. {
  8. if (!string.IsNullOrEmpty(Value))
  9. {
  10. input += " and " + Field + " like '%" + Value + "%'";
  11. }
  12. return input;
  13. }
  14. #endregion
  15. }
  16. }