コード例 #1
0
ファイル: FullTextRepository.cs プロジェクト: yarutyunov/Yarn
 public FullTextRepository(IFullTextProvider fullTextProvider, DataContextOptions dataContextOptions, RepositoryOptions options) : base(dataContextOptions, options)
 {
     FullText = fullTextProvider;
 }
コード例 #2
0
 public FullTextRepository(IDataContext <ISession> context, IFullTextProvider fullTextProvider)
     : base(context)
 {
     FullText = fullTextProvider;
 }
コード例 #3
0
ファイル: FullTextRepository.cs プロジェクト: yarutyunov/Yarn
 public FullTextRepository(IFullTextProvider fullTextProvider, IDataContext <DbContext> dataContext, RepositoryOptions options) : base(dataContext, options)
 {
     FullText = fullTextProvider;
 }