選択できるのは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. }