NMemory.xml 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>NMemory</name>
  5. </assembly>
  6. <members>
  7. <member name="T:NMemory.Concurrency.DeadlockManagementStrategy">
  8. <summary>
  9. Specifies the strategy of deadlock management
  10. </summary>
  11. </member>
  12. <member name="F:NMemory.Concurrency.DeadlockManagementStrategy.DeadlockDetection">
  13. <summary>
  14. Deadlock detection
  15. </summary>
  16. </member>
  17. <member name="F:NMemory.Concurrency.DeadlockManagementStrategy.DeadlockPrevention">
  18. <summary>
  19. Deadlock prevention
  20. </summary>
  21. </member>
  22. <member name="T:NMemory.Concurrency.Locks.ILockFactory">
  23. <summary>
  24. Represents a factory that is able to instantiate <c>ILock</c> objects
  25. </summary>
  26. </member>
  27. <member name="T:NMemory.Constraints.IConstraint">
  28. <summary>
  29. Defines functionality for constraint against database entities.
  30. </summary>
  31. <typeparam name="TEntity"> The type of the entity. </typeparam>
  32. </member>
  33. <member name="T:NMemory.Constraints.IConstraint`1">
  34. <summary>
  35. Defines functionality for constraint against database entities.
  36. </summary>
  37. <typeparam name="TEntity"> The type of the entity. </typeparam>
  38. </member>
  39. <member name="M:NMemory.Constraints.IConstraint`1.Apply(`0,NMemory.Execution.IExecutionContext)">
  40. <summary>
  41. Apply the constraint on an entity.
  42. </summary>
  43. <param name="entity"> The entity to apply the constraint on. </param>
  44. <param name="context"> The execution context. </param>
  45. </member>
  46. <member name="T:NMemory.Database">
  47. <summary>
  48. Represents an NMemory database instance.
  49. </summary>
  50. </member>
  51. <member name="M:NMemory.Database.#ctor">
  52. <summary>
  53. Initializes a new instance of the <see cref="T:NMemory.Database" /> class.
  54. </summary>
  55. </member>
  56. <member name="M:NMemory.Database.#ctor(NMemory.Modularity.IDatabaseComponentFactory)">
  57. <summary>
  58. Initializes a new instance of the <see cref="T:NMemory.Database" /> class with the specified database engine factory..
  59. </summary>
  60. <param name="databaseComponentFactory">The database component factory.</param>
  61. <exception cref="T:System.ArgumentNullException"><paramref name="databaseComponentFactory"/> is null.</exception>
  62. </member>
  63. <member name="P:NMemory.Database.StoredProcedures">
  64. <summary>
  65. Gets the collection of stored procedures contained by the database
  66. </summary>
  67. </member>
  68. <member name="P:NMemory.Database.Tables">
  69. <summary>
  70. Gets the collection of tables contained by the database.
  71. </summary>
  72. <value>
  73. A collection of tables.
  74. </value>
  75. </member>
  76. <member name="P:NMemory.Database.DatabaseEngine">
  77. <summary>
  78. Gets the database engine.
  79. </summary>
  80. <value>
  81. The database engine.
  82. </value>
  83. </member>
  84. <member name="F:NMemory.Exceptions.ErrorCode.GenericError">
  85. <summary>
  86. The generic error
  87. </summary>
  88. </member>
  89. <member name="F:NMemory.Exceptions.ErrorCode.ExistingKeyFound">
  90. <summary>
  91. The existing key found
  92. </summary>
  93. </member>
  94. <member name="F:NMemory.Exceptions.ErrorCode.TransactionHasAlreadyStarted">
  95. <summary>
  96. The transaction has already started
  97. </summary>
  98. </member>
  99. <member name="F:NMemory.Exceptions.ErrorCode.RelationError">
  100. <summary>
  101. Relation error
  102. </summary>
  103. </member>
  104. <member name="T:NMemory.Execution.Optimization.JoinGroup">
  105. <summary>
  106. Provides factory method for <see cref="!:GroupJoin&lt;TOuter, TInner&gt;"/> in order to
  107. achieve type impeance.
  108. </summary>
  109. </member>
  110. <member name="T:NMemory.Execution.Optimization.Rewriters.IndexAccessRewriter">
  111. <summary>
  112. Rewrites constant->member index access expression to constant expression.
  113. </summary>
  114. </member>
  115. <member name="T:NMemory.Execution.Optimization.Rewriters.InnerJoinLogicalRewriter">
  116. <summary>
  117. Searches for SelectMany based inner join calls and replaces it with Join call
  118. </summary>
  119. </member>
  120. <member name="T:NMemory.Execution.Optimization.Rewriters.OuterJoinLogicalRewriter">
  121. <summary>
  122. Searches for SelectMany based outer join calls and replaces it with GroupJoin call
  123. </summary>
  124. </member>
  125. <member name="T:NMemory.Execution.Optimization.Rewriters.QueryableRewriter">
  126. <summary>
  127. Represents an expression rewriter that replaces <see cref="!:System.Queryable"/>
  128. extension method calls with corresponding <see cref="!:System.Enumerable"/>
  129. extension method calls
  130. </summary>
  131. </member>
  132. <member name="M:NMemory.Execution.Optimization.Rewriters.QueryableRewriter.FindGenericType(System.Type,System.Type)">
  133. <summary>
  134. Finds the concrete type of the specified generic type definition.
  135. For example, if definition is IEnumerable&gt;&lt;, than the type IList&gt;string&lt;>
  136. returns IEnumerable&gt;string&lt;
  137. </summary>
  138. <param name="definition">The generic type definition.</param>
  139. <param name="type">The type.</param>
  140. <returns>The generic type of the definition.</returns>
  141. </member>
  142. <member name="T:NMemory.Execution.Optimization.Rewriters.TableAccessRewriter">
  143. <summary>
  144. Rewrites all kind of table access expression to constant expression.
  145. </summary>
  146. </member>
  147. <member name="P:NMemory.Indexes.Index`2.SupportsIntervalSearch">
  148. <summary>
  149. Gets a value that indicates whether the index structure supports interval search.
  150. </summary>
  151. </member>
  152. <member name="T:NMemory.Modularity.IDatabaseComponentFactory">
  153. <summary>
  154. Provides functionality to instantiate the components of a database engine.
  155. </summary>
  156. </member>
  157. <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateConcurrencyManager">
  158. <summary>
  159. Creates a concurrency manager that handles the concurrent access of transactions.
  160. </summary>
  161. <returns>A concurrency manager.</returns>
  162. </member>
  163. <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateQueryCompiler">
  164. <summary>
  165. Creates a query compiler that optimizes and compiles database queries.
  166. </summary>
  167. <returns>A query compiler.</returns>
  168. </member>
  169. <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateQueryExecutor">
  170. <summary>
  171. Creates a query executor that executes compiled queries.
  172. </summary>
  173. <returns>A query executor.</returns>
  174. </member>
  175. <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateTransactionHandler">
  176. <summary>
  177. </summary>
  178. <returns></returns>
  179. </member>
  180. <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateLoggingPort">
  181. <summary>
  182. </summary>
  183. <returns></returns>
  184. </member>
  185. <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateServiceProvider">
  186. <summary>
  187. </summary>
  188. <returns></returns>
  189. </member>
  190. <member name="T:NMemory.StoredProcedures.StoredProcedure`1">
  191. <summary>
  192. Represents a stored procedure that returns with a result set.
  193. </summary>
  194. <typeparam name="T">
  195. The type of the result set elements.
  196. </typeparam>
  197. </member>
  198. <member name="T:NMemory.Tables.ConstraintCollection`1">
  199. <summary>
  200. Represents a collection of contraints.
  201. </summary>
  202. <typeparam name="T">
  203. The type of the entity the constraints are applied on.
  204. </typeparam>
  205. </member>
  206. <member name="M:NMemory.Tables.ConstraintCollection`1.#ctor">
  207. <summary>
  208. Initializes a new instance of the <see cref="!:ContraintCollection&lt;T&gt;"/> class.
  209. </summary>
  210. </member>
  211. <member name="M:NMemory.Tables.ConstraintCollection`1.Apply(`0,NMemory.Execution.IExecutionContext,NMemory.Tables.ITable)">
  212. <summary>Applys all contraints on the specified entity.</summary>
  213. <param name="entity">The entity.</param>
  214. <param name="context">The execution context.</param>
  215. <param name="table">The table.</param>
  216. </member>
  217. <member name="M:NMemory.Tables.ConstraintCollection`1.Add(NMemory.Constraints.IConstraint{`0})">
  218. <summary>
  219. Adds a table constraint.
  220. </summary>
  221. <param name="constraint">
  222. The constraint. Note that you must not share this constraint instance across
  223. multiple tables.
  224. </param>
  225. </member>
  226. <member name="M:NMemory.Tables.ConstraintCollection`1.Add(NMemory.Constraints.IConstraintFactory{`0})">
  227. <summary>
  228. Adds a table constraint.
  229. </summary>
  230. <param name="constraintFactory">
  231. The constraint factory that instantiates a dedicated constraint instance for
  232. this table.
  233. </param>
  234. </member>
  235. <member name="T:NMemory.Tables.DefaultTable`2">
  236. <summary>
  237. Represents a database table.
  238. </summary>
  239. <typeparam name="TEntity">
  240. The type of the entities contained by the table
  241. </typeparam>
  242. <typeparam name="TPrimaryKey">
  243. The type of the primary key of the entities.
  244. </typeparam>
  245. </member>
  246. <member name="M:NMemory.Tables.DefaultTable`2.#ctor">
  247. <summary>
  248. Prevents a default instance of the <see cref="!:DefaultTable&lt;TPrimaryKey&gt;" />
  249. class from being created.
  250. </summary>
  251. </member>
  252. <member name="M:NMemory.Tables.DefaultTable`2.InsertCore(`0,NMemory.Transactions.Transaction)">
  253. <summary>
  254. Core implementation of an entity insert.
  255. </summary>
  256. <param name="entity">
  257. The entity that contains the primary key of the entity to be deleted.
  258. </param>
  259. <param name="transaction">
  260. The transaction within which the update operation executes.
  261. </param>
  262. </member>
  263. <member name="M:NMemory.Tables.DefaultTable`2.UpdateCore(System.Linq.Expressions.Expression,NMemory.Execution.IUpdater{`0},NMemory.Transactions.Transaction)">
  264. <summary>
  265. Core implementation of a bulk entity update.
  266. </summary>
  267. <param name="expression">
  268. A query expression that represents the entities to be updated.
  269. </param>
  270. <param name="updater">
  271. An expression that represents the update mechanism.
  272. </param>
  273. <param name="transaction">
  274. The transaction within which the update operation is executed.
  275. </param>
  276. <returns>
  277. The updated entities.
  278. </returns>
  279. </member>
  280. <member name="M:NMemory.Tables.DefaultTable`2.DeleteCore(System.Linq.Expressions.Expression,NMemory.Transactions.Transaction)">
  281. <summary>
  282. Core implementation of an entity delete.
  283. </summary>
  284. <param name="key">
  285. The primary key of the entity to be deleted.
  286. </param>
  287. <param name="transaction">
  288. The transaction within which the delete operation is executed.
  289. </param>
  290. </member>
  291. <member name="T:NMemory.Tables.IBulkTable`1">
  292. <summary>
  293. Defines bulk operations for a table.
  294. </summary>
  295. <typeparam name="TEntity">The type of the entities contained by the table.</typeparam>
  296. </member>
  297. <member name="M:NMemory.Tables.IBulkTable`1.Update(NMemory.Linq.TableQuery{`0},System.Linq.Expressions.Expression{System.Func{`0,`0}},NMemory.Transactions.Transaction)">
  298. <summary>
  299. Updates the entities.
  300. </summary>
  301. <param name="query">A query expression that represents the entities to be updated.</param>
  302. <param name="updater">An expression that represents the update logic.</param>
  303. <param name="transaction">The transaction within which the update operation is executed.</param>
  304. <returns>The updated entities</returns>
  305. </member>
  306. <member name="M:NMemory.Tables.IBulkTable`1.Delete(NMemory.Linq.TableQuery{`0},NMemory.Transactions.Transaction)">
  307. <summary>
  308. Deletes entities.
  309. </summary>
  310. <param name="query">The query that represents the entities to be deleted.</param>
  311. <param name="transaction">The transaction within which the delete operation is executed.</param>
  312. <returns>The count of the deleted entities.</returns>
  313. </member>
  314. <member name="M:NMemory.Tables.IReflectionTable.Insert(System.Object)">
  315. <summary>
  316. Inserts a new entity into the table.
  317. </summary>
  318. <param name="entity">An entity that contains the property values of the new entity.</param>
  319. </member>
  320. <member name="M:NMemory.Tables.IReflectionTable.Update(System.Object)">
  321. <summary>
  322. Updates the properties of an entity contained by the table.
  323. </summary>
  324. <param name="entity">An entity that contains the primary key of the entity to be updated and the new property values.</param>
  325. </member>
  326. <member name="M:NMemory.Tables.IReflectionTable.Delete(System.Object)">
  327. <summary>
  328. Deletes an entity from the table.
  329. </summary>
  330. <param name="entity">An entity that contains the primary key of the entity to be deleted.</param>
  331. </member>
  332. <member name="T:NMemory.Tables.ITable">
  333. <summary>
  334. Defines an interface for database tables.
  335. </summary>
  336. </member>
  337. <member name="P:NMemory.Tables.ITable.Database">
  338. <summary>
  339. Gets the database that contains the table.
  340. </summary>
  341. </member>
  342. <member name="P:NMemory.Tables.ITable.EntityType">
  343. <summary>
  344. Gets the type of the entities contained in the table.
  345. </summary>
  346. </member>
  347. <member name="P:NMemory.Tables.ITable.PrimaryKeyIndex">
  348. <summary>
  349. Gets the primary key index of the table.
  350. </summary>
  351. </member>
  352. <member name="P:NMemory.Tables.ITable.Indexes">
  353. <summary>
  354. Gets the indexes of the table.
  355. </summary>
  356. </member>
  357. <member name="E:NMemory.Tables.ITable.IndexChanged">
  358. <summary>
  359. Occurs when the indexes of the table are changed.
  360. </summary>
  361. </member>
  362. <member name="P:NMemory.Tables.ITable.Count">
  363. <summary>
  364. Gets the number of entities contained in the table.
  365. </summary>
  366. </member>
  367. <member name="T:NMemory.Tables.ITable`1">
  368. <summary>
  369. Defines an interface for database tables.
  370. </summary>
  371. <typeparam name="TEntity">
  372. The type of the entities contained by the table.
  373. </typeparam>
  374. </member>
  375. <member name="P:NMemory.Tables.ITable`1.PrimaryKeyIndex">
  376. <summary>
  377. Gets the primary key index of the table.
  378. </summary>
  379. </member>
  380. <member name="M:NMemory.Tables.ITable`1.Insert(`0)">
  381. <summary>
  382. Inserts a new entity into the table.
  383. </summary>
  384. <param name="entity">
  385. An entity that contains the property values of the new entity.
  386. </param>
  387. </member>
  388. <member name="M:NMemory.Tables.ITable`1.Insert(`0,NMemory.Transactions.Transaction)">
  389. <summary>
  390. Inserts a new entity into the table.
  391. </summary>
  392. <param name="entity">
  393. An entity that contains the property values of the new entity.
  394. </param>
  395. <param name="entity">
  396. The transaction within which the insert operation executes.
  397. </param>
  398. </member>
  399. <member name="M:NMemory.Tables.ITable`1.Update(`0)">
  400. <summary>
  401. Updates the properties of the specified entity contained by the table.
  402. </summary>
  403. <param name="entity">
  404. An entity that contains the primary key of the entity to be updated and the new
  405. property values.
  406. </param>
  407. </member>
  408. <member name="M:NMemory.Tables.ITable`1.Update(`0,NMemory.Transactions.Transaction)">
  409. <summary>
  410. Updates the properties of the specified contained by the table.
  411. </summary>
  412. <param name="entity">
  413. An entity that contains the primary key of the entity to be updated and the new
  414. property values.
  415. </param>
  416. <param name="entity">
  417. The transaction within which the update operation executes.
  418. </param>
  419. </member>
  420. <member name="M:NMemory.Tables.ITable`1.Delete(`0)">
  421. <summary>
  422. Deletes an entity from the table.
  423. </summary>
  424. <param name="entity">
  425. An entity that contains the primary key of the entity to be deleted.
  426. </param>
  427. </member>
  428. <member name="M:NMemory.Tables.ITable`1.Delete(`0,NMemory.Transactions.Transaction)">
  429. <summary>
  430. Deletes an entity from the table.
  431. </summary>
  432. <param name="entity">
  433. An entity that contains the primary key of the entity to be deleted.
  434. </param>
  435. <param name="entity">
  436. The transaction within which the delete operation executes.
  437. </param>
  438. </member>
  439. <member name="P:NMemory.Tables.ITable`1.Contraints">
  440. <summary>
  441. Gets the collection of contraints registered to table.
  442. </summary>
  443. <value>
  444. The contraints.
  445. </value>
  446. </member>
  447. <member name="T:NMemory.Tables.ITable`2">
  448. <summary>
  449. Defines an interface for database tables.
  450. </summary>
  451. <typeparam name="TEntity">
  452. The type of the entities contained by the table.
  453. </typeparam>
  454. <typeparam name="TPrimaryKey">
  455. The type of the primary key of the entities.
  456. </typeparam>
  457. </member>
  458. <member name="P:NMemory.Tables.ITable`2.PrimaryKeyIndex">
  459. <summary>
  460. Gets the primary key index of the table.
  461. </summary>
  462. </member>
  463. <member name="M:NMemory.Tables.ITable`2.Update(`1,`0)">
  464. <summary>
  465. Updates the properties of the specified entity contained by the table.
  466. </summary>
  467. <param name="key">
  468. The primary key of the entity to be updated.
  469. </param>
  470. <param name="entity">
  471. An entity that contains the new property values.
  472. </param>
  473. </member>
  474. <member name="M:NMemory.Tables.ITable`2.Update(`1,`0,NMemory.Transactions.Transaction)">
  475. <summary>
  476. Updates the properties of the specified entity contained by the table.
  477. </summary>
  478. <param name="key">
  479. The primary key of the entity to be updated.
  480. </param>
  481. <param name="entity">
  482. An entity that contains the new property values.
  483. </param>
  484. <param name="entity">
  485. The transaction within which the update operation is executed.
  486. </param>
  487. </member>
  488. <member name="M:NMemory.Tables.ITable`2.Delete(`1)">
  489. <summary>
  490. Deletes an entity from the table.
  491. </summary>
  492. <param name="key">
  493. The primary key of the entity to be deleted.
  494. </param>
  495. </member>
  496. <member name="M:NMemory.Tables.ITable`2.Delete(`1,NMemory.Transactions.Transaction)">
  497. <summary>
  498. Deletes an entity from the table.
  499. </summary>
  500. <param name="key">
  501. The primary key of the entity to be deleted.
  502. </param>
  503. <param name="entity">
  504. The transaction within which the update operation is executed.
  505. </param>
  506. </member>
  507. <member name="T:NMemory.Tables.Relation`4">
  508. <summary>
  509. Represents a relation between two database tables.
  510. </summary>
  511. <typeparam name="TPrimary">
  512. The type of the entities of the referred table.
  513. </typeparam>
  514. <typeparam name="TPrimaryKey">
  515. The type of the primary key.
  516. </typeparam>
  517. <typeparam name="TForeign">
  518. The type of the entities of the referring table.
  519. </typeparam>
  520. <typeparam name="TForeignKey">
  521. The type of the foreign key.
  522. </typeparam>
  523. </member>
  524. <member name="T:NMemory.Tables.RelationOptions">
  525. <summary>
  526. Represents options of a relation.
  527. </summary>
  528. </member>
  529. <member name="M:NMemory.Tables.RelationOptions.#ctor(System.Boolean)">
  530. <summary>
  531. Initializes a new instance of the <see cref="T:NMemory.Tables.RelationOptions"/> class.
  532. </summary>
  533. <param name="cascadedDeletion">
  534. if set to <c>true</c> cascaded deletion will be enabled
  535. </param>
  536. </member>
  537. <member name="P:NMemory.Tables.RelationOptions.CascadedDeletion">
  538. <summary>
  539. Gets a value that indicates whether the deletion of a referred (primary) entity
  540. should result in the deletion of the referring (foreign) entities.
  541. </summary>
  542. <value>
  543. <c>true</c> if enabled; otherwise, <c>false</c>.
  544. </value>
  545. </member>
  546. <member name="T:NMemory.Tables.TableCollection">
  547. <summary>
  548. Represents a collection of the tables of the database.
  549. </summary>
  550. </member>
  551. <member name="M:NMemory.Tables.TableCollection.GetAllTables">
  552. <summary>
  553. Returns all database tables.
  554. </summary>
  555. <returns> A list of the tables. </returns>
  556. </member>
  557. <member name="M:NMemory.Tables.TableCollection.GetAllRelations">
  558. <summary>
  559. Returns all database table relations.
  560. </summary>
  561. <returns> A list of the table relations. </returns>
  562. </member>
  563. <member name="M:NMemory.Tables.TableCollection.Create``2(System.Linq.Expressions.Expression{System.Func{``0,``1}},NMemory.Tables.IdentitySpecification{``0})">
  564. <summary>
  565. Initializes a database table.
  566. </summary>
  567. <typeparam name="TEntity">
  568. Specifies the type of the entities of the table.
  569. </typeparam>
  570. <typeparam name="TPrimaryKey">
  571. Specifies the type of the primary key of the entities.
  572. </typeparam>
  573. <param name="primaryKey">
  574. An expression that represents the primary key of the entities.
  575. </param>
  576. <param name="identitySpecification">
  577. An IdentitySpecification to set an identity field.
  578. </param>
  579. <returns>
  580. An Table that represents the defined table object.
  581. </returns>
  582. </member>
  583. <member name="M:NMemory.Tables.TableCollection.Create``2(NMemory.Indexes.IKeyInfo{``0,``1},NMemory.Tables.IdentitySpecification{``0},System.Object)">
  584. <summary>
  585. Initializes a database table.
  586. </summary>
  587. <typeparam name="TEntity">
  588. Specifies the type of the entities of the table.
  589. </typeparam>
  590. <typeparam name="TPrimaryKey">
  591. Specifies the type of the primary key of the entities.
  592. </typeparam>
  593. <param name="primaryKey">
  594. An IKeyInfo object that represents the primary key of the entities.
  595. </param>
  596. <param name="identitySpecification">
  597. An IdentitySpecification to set an identity field.
  598. </param>
  599. <returns>
  600. The table.
  601. </returns>
  602. </member>
  603. <member name="M:NMemory.Tables.TableCollection.CreateRelation``4(NMemory.Indexes.IUniqueIndex{``0,``1},NMemory.Indexes.IIndex{``2,``3},System.Func{``3,``1},System.Func{``1,``3})">
  604. <summary>
  605. Creates a relation between two tables.
  606. </summary>
  607. <typeparam name="TPrimary">
  608. The type of the entities of the primary table.
  609. </typeparam>
  610. <typeparam name="TPrimaryKey">
  611. The type of the primary key of the entities of the primary table.
  612. </typeparam>
  613. <typeparam name="TForeign">
  614. The type of the entities of the foreign table.
  615. </typeparam>
  616. <typeparam name="TForeignKey">
  617. Type type of the foreign key of the foreign table.
  618. </typeparam>
  619. <param name="primaryIndex">
  620. An IIndex that specifies the primary key.
  621. </param>
  622. <param name="foreignIndex">
  623. An IIndex that specifies the foreign key.
  624. </param>
  625. <param name="convertForeignToPrimary">
  626. A function to convert a foreign key to the corresponding primary key.
  627. </param>
  628. <param name="convertPrimaryToForeign">
  629. A function to convert a primary key to the corresponding foreign key.
  630. </param>
  631. <returns>
  632. The relation.
  633. </returns>
  634. </member>
  635. <member name="M:NMemory.Tables.TableCollection.CreateRelation``4(NMemory.Indexes.IUniqueIndex{``0,``1},NMemory.Indexes.IIndex{``2,``3},System.Func{``3,``1},System.Func{``1,``3},NMemory.Tables.RelationOptions)">
  636. <summary>
  637. Creates a relation between two tables.
  638. </summary>
  639. <typeparam name="TPrimary">
  640. The type of the entities of the primary table.
  641. </typeparam>
  642. <typeparam name="TPrimaryKey">
  643. The type of the primary key of the entities of the primary table.
  644. </typeparam>
  645. <typeparam name="TForeign">
  646. The type of the entities of the foreign table.
  647. </typeparam>
  648. <typeparam name="TForeignKey">
  649. Type type of the foreign key of the foreign table.
  650. </typeparam>
  651. <param name="primaryIndex">
  652. An IIndex that specifies the primary key.
  653. </param>
  654. <param name="foreignIndex">
  655. An IIndex that specifies the foreign key.
  656. </param>
  657. <param name="convertForeignToPrimary">
  658. A function to convert a foreign key to the corresponding primary key.
  659. </param>
  660. <param name="convertPrimaryToForeign">
  661. A function to convert a primary key to the corresponding foreign key.
  662. </param>
  663. <returns>
  664. The relation.
  665. </returns>
  666. </member>
  667. <member name="T:NMemory.Tables.Table`2">
  668. <summary>
  669. Represents a database table.
  670. </summary>
  671. <typeparam name="TEntity">
  672. The type of the entities contained by the table
  673. </typeparam>
  674. <typeparam name="TPrimaryKey">
  675. The type of the primary key of the entities.
  676. </typeparam>
  677. </member>
  678. <member name="M:NMemory.Tables.Table`2.#ctor(NMemory.Modularity.IDatabase,NMemory.Indexes.IKeyInfo{`0,`1},NMemory.Tables.IdentitySpecification{`0},System.Object)">
  679. <summary>
  680. Initializes a new instance of the <see cref="T:NMemory.Tables.Table`2"/>
  681. class.
  682. </summary>
  683. <param name="database"> The database. </param>
  684. <param name="primaryKey"> The primary key. </param>
  685. <param name="identitySpecification"> The identity specification. </param>
  686. </member>
  687. <member name="M:NMemory.Tables.Table`2.#ctor">
  688. <summary>
  689. Prevents a default instance of the <see cref="!:Table&lt;TPrimaryKey&gt;" /> class from
  690. being created.
  691. </summary>
  692. </member>
  693. <member name="E:NMemory.Tables.Table`2.IndexChanged">
  694. <summary>
  695. Occurs when the indexes of the table are changed.
  696. </summary>
  697. </member>
  698. <member name="M:NMemory.Tables.Table`2.Insert(`0)">
  699. <summary>
  700. Inserts the specified entity.
  701. </summary>
  702. <param name="entity"> The entity. </param>
  703. </member>
  704. <member name="M:NMemory.Tables.Table`2.Insert(`0,NMemory.Transactions.Transaction)">
  705. <summary>
  706. Inserts the specified entity.
  707. </summary>
  708. <param name="entity"> The entity. </param>
  709. <param name="transaction"> The transaction. </param>
  710. </member>
  711. <member name="M:NMemory.Tables.Table`2.InsertCore(`0,NMemory.Transactions.Transaction)">
  712. <summary>
  713. Core implementation of an entity insert.
  714. </summary>
  715. <param name="entity">
  716. The entity that contains the primary key of the entity to be deleted.
  717. </param>
  718. <param name="transaction">
  719. The transaction within which the update operation executes.
  720. </param>
  721. </member>
  722. <member name="M:NMemory.Tables.Table`2.Update(`0)">
  723. <summary>
  724. Updates the properties of the specified entity contained by the table.
  725. </summary>
  726. <param name="entity">
  727. An entity that contains the primary key of the entity to be updated and the new
  728. property values.
  729. </param>
  730. </member>
  731. <member name="M:NMemory.Tables.Table`2.Update(`0,NMemory.Transactions.Transaction)">
  732. <summary>
  733. Updates the properties of the specified contained by the table.
  734. </summary>
  735. <param name="entity">
  736. An entity that contains the primary key of the entity to be updated and the new
  737. property values.
  738. </param>
  739. <param name="entity">
  740. The transaction within which the update operation executes.
  741. </param>
  742. </member>
  743. <member name="M:NMemory.Tables.Table`2.Update(`1,`0)">
  744. <summary>
  745. Updates the properties of the specified entity contained by the table.
  746. </summary>
  747. <param name="key">
  748. The primary key of the entity to be updated.
  749. </param>
  750. <param name="entity">
  751. An entity that contains the new property values.
  752. </param>
  753. </member>
  754. <member name="M:NMemory.Tables.Table`2.Update(`1,`0,NMemory.Transactions.Transaction)">
  755. <summary>
  756. Updates the properties of the specified entity contained by the table.
  757. </summary>
  758. <param name="key">
  759. The primary key of the entity to be updated.
  760. </param>
  761. <param name="entity">
  762. An entity that contains the new property values.
  763. </param>
  764. <param name="entity">
  765. The transaction within which the update operation is executed.
  766. </param>
  767. </member>
  768. <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IBulkTable{TEntity}#Update(NMemory.Linq.TableQuery{`0},System.Linq.Expressions.Expression{System.Func{`0,`0}},NMemory.Transactions.Transaction)">
  769. <summary>
  770. Updates the entities.
  771. </summary>
  772. <param name="query">
  773. The query expression that represents the entities to be updated.
  774. </param>
  775. <param name="updater">
  776. The expression that represents the update logic.
  777. </param>
  778. <param name="transaction">
  779. The transaction within which the update operation is executed.
  780. </param>
  781. <returns>
  782. The updated entities.
  783. </returns>
  784. </member>
  785. <member name="M:NMemory.Tables.Table`2.UpdateCore(System.Linq.Expressions.Expression,NMemory.Execution.IUpdater{`0},NMemory.Transactions.Transaction)">
  786. <summary>
  787. Core implementation of a bulk entity update.
  788. </summary>
  789. <param name="expression">
  790. The query expression that represents the entities to be updated.
  791. </param>
  792. <param name="updater">
  793. The updater.
  794. </param>
  795. <param name="transaction">
  796. The transaction within which the update operation is executed.
  797. </param>
  798. <returns> The updated entities. </returns>
  799. </member>
  800. <member name="M:NMemory.Tables.Table`2.Delete(`0)">
  801. <summary>
  802. Deletes an entity from the table.
  803. </summary>
  804. <param name="entity">
  805. An entity that contains the primary key of the entity to be deleted.
  806. </param>
  807. </member>
  808. <member name="M:NMemory.Tables.Table`2.Delete(`0,NMemory.Transactions.Transaction)">
  809. <summary>
  810. Deletes an entity from the table.
  811. </summary>
  812. <param name="key">
  813. The primary key of the entity to be deleted.
  814. </param>
  815. <param name="entity">
  816. The transaction within which the update operation is executed.
  817. </param>
  818. </member>
  819. <member name="M:NMemory.Tables.Table`2.Delete(`1)">
  820. <summary>
  821. Deletes an entity from the table.
  822. </summary>
  823. <param name="key">
  824. The primary key of the entity to be deleted.
  825. </param>
  826. </member>
  827. <member name="M:NMemory.Tables.Table`2.Delete(`1,NMemory.Transactions.Transaction)">
  828. <summary>
  829. Deletes an entity from the table.
  830. </summary>
  831. <param name="key">
  832. The primary key of the entity to be deleted.
  833. </param>
  834. <param name="entity">
  835. The transaction within which the update operation is executed.
  836. </param>
  837. </member>
  838. <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IBulkTable{TEntity}#Delete(NMemory.Linq.TableQuery{`0},NMemory.Transactions.Transaction)">
  839. <summary>
  840. Deletes entities.
  841. </summary>
  842. <param name="query">
  843. The query that represents the entities to be deleted.
  844. </param>
  845. <param name="transaction">
  846. The transaction within which the delete operation is executed.
  847. </param>
  848. <returns>
  849. The count of the deleted entities.
  850. </returns>
  851. </member>
  852. <member name="M:NMemory.Tables.Table`2.DeleteCore(System.Linq.Expressions.Expression,NMemory.Transactions.Transaction)">
  853. <summary>
  854. Core implementation of a bulk entity delete.
  855. </summary>
  856. <param name="expression">
  857. A query expression that represents the entities to be deleted.
  858. </param>
  859. <param name="transaction">
  860. The transaction within which the delete operation is executed.
  861. </param>
  862. <returns>
  863. The count of deleted entities.
  864. </returns>
  865. </member>
  866. <member name="P:NMemory.Tables.Table`2.Count">
  867. <summary>
  868. Gets the number of entities contained by the table.
  869. </summary>
  870. </member>
  871. <member name="M:NMemory.Tables.Table`2.CreateIndex``1(NMemory.Indexes.IIndexFactory,System.Linq.Expressions.Expression{System.Func{`0,``0}})">
  872. <summary>
  873. Creates a new index.
  874. </summary>
  875. <typeparam name="TKey">
  876. The type of the index key.
  877. </typeparam>
  878. <param name="indexFactory">
  879. The index factory.
  880. </param>
  881. <param name="keySelector">
  882. The expression representing the definition of the index key.
  883. </param>
  884. <returns>
  885. The index.
  886. </returns>
  887. </member>
  888. <member name="M:NMemory.Tables.Table`2.CreateIndex``1(NMemory.Indexes.IIndexFactory,NMemory.Indexes.IKeyInfo{`0,``0})">
  889. <summary>
  890. Creates a new index.
  891. </summary>
  892. <typeparam name="TKey"> The type of the index key. </typeparam>
  893. <param name="indexFactory"> The index factory. </param>
  894. <param name="keyInfo"> The definition of the index key. </param>
  895. <returns> The index. </returns>
  896. </member>
  897. <member name="M:NMemory.Tables.Table`2.CreateUniqueIndex``1(NMemory.Indexes.IIndexFactory,System.Linq.Expressions.Expression{System.Func{`0,``0}})">
  898. <summary>
  899. Creates a new unique index.
  900. </summary>
  901. <typeparam name="TUniqueKey">
  902. The type of the unique index key.
  903. </typeparam>
  904. <param name="indexFactory">
  905. The index factory.
  906. </param>
  907. <param name="key">
  908. The expression representing the definition of the index key.
  909. </param>
  910. <returns>
  911. The unique index.
  912. </returns>
  913. </member>
  914. <member name="M:NMemory.Tables.Table`2.CreateUniqueIndex``1(NMemory.Indexes.IIndexFactory,NMemory.Indexes.IKeyInfo{`0,``0})">
  915. <summary>
  916. Creates a new unique index.
  917. </summary>
  918. <typeparam name="TUniqueKey">
  919. The type of the unqiue index key.
  920. </typeparam>
  921. <param name="indexFactory">
  922. The index factory.
  923. </param>
  924. <param name="keyInfo">
  925. The definition of the index key
  926. </param>
  927. <returns> The unique index. </returns>
  928. </member>
  929. <member name="P:NMemory.Tables.Table`2.Indexes">
  930. <summary>
  931. Gets the indexes of the table.
  932. </summary>
  933. </member>
  934. <member name="P:NMemory.Tables.Table`2.PrimaryKeyIndex">
  935. <summary>
  936. Gets the primary key index of the table.
  937. </summary>
  938. </member>
  939. <member name="P:NMemory.Tables.Table`2.NMemory#Tables#ITable{TEntity}#PrimaryKeyIndex">
  940. <summary>
  941. Gets the index of the primary key.
  942. </summary>
  943. <value>
  944. The index of the primary key.
  945. </value>
  946. </member>
  947. <member name="P:NMemory.Tables.Table`2.NMemory#Tables#ITable#PrimaryKeyIndex">
  948. <summary>
  949. Gets the index of the primary key.
  950. </summary>
  951. <value>
  952. The index of the primary key.
  953. </value>
  954. </member>
  955. <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IReflectionTable#Update(System.Object)">
  956. <summary>
  957. Updates the properties of an entity contained by the table.
  958. </summary>
  959. <param name="entity">An entity that contains the primary key of the entity to be updated and the new property values.</param>
  960. </member>
  961. <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IReflectionTable#Insert(System.Object)">
  962. <summary>
  963. Inserts a new entity into the table.
  964. </summary>
  965. <param name="entity">An entity that contains the property values of the new entity.</param>
  966. </member>
  967. <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IReflectionTable#Delete(System.Object)">
  968. <summary>
  969. Deletes an entity from the table.
  970. </summary>
  971. <param name="entity">An entity that contains the primary key of the entity to be deleted.</param>
  972. </member>
  973. <member name="M:NMemory.Tables.Table`2.ToString">
  974. <summary>
  975. Returns a <see cref="T:System.String"/> that represents this instance.
  976. </summary>
  977. <returns>
  978. A <see cref="T:System.String"/> that represents this instance.
  979. </returns>
  980. </member>
  981. <member name="M:NMemory.Tables.Table`2.CreateStoredEntity">
  982. <summary>
  983. Creates an entity that is meant to be stored in the table.
  984. </summary>
  985. <returns>
  986. The entity.
  987. </returns>
  988. </member>
  989. </members>
  990. </doc>