| IFulltextStore Interface |
Namespace: SphinxConnector.FluentApi
The IFulltextStore type exposes the following members.
| Name | Description | |
|---|---|---|
| Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) | |
| StartSession |
Starts a new full-text session.
|
| Name | Description | |
|---|---|---|
| ConnectionString |
Provides methods to configure a connection string for this instance. If no connection string is provided,
the default will be used.
| |
| Conventions |
Gets the conventions used for index- and attributes names for session started by
this instance.
| |
| Settings |
Gets the settings for this instance.
|
IFulltextStore fulltextStore = new FulltextStore().Initialize(); fulltextStore.ConnectionString.IsThis("datasource=192.168.105;port=9306"); using (IFulltextSession session = fulltextStore.StartSession()) { //Do stuff with session }