コード例 #1
0
ファイル: SearchService.cs プロジェクト: obrana/portfolio2
 public IList <BestMatch> BestMatch(string firstKeyword, string secondKeyword)
 {
     using var ctx = new MoviesContext();
     return(ctx.BestMatch(firstKeyword, secondKeyword));
 }