StringExtension.cs 412 B

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