You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }