您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

LuUtilsPartialContext.cs 384B

123456789101112131415161718
  1. using System;
  2. using System.Linq;
  3. namespace TestUtils.DataAccess
  4. {
  5. public partial class LuUtilsDbContext
  6. {
  7. public static string unaccent(string str)
  8. {
  9. throw new NotImplementedException();
  10. }
  11. public static bool lu_texts_match(string query, string data)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. }
  16. }