| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>NMemory</name>
- </assembly>
- <members>
- <member name="T:NMemory.Concurrency.DeadlockManagementStrategy">
- <summary>
- Specifies the strategy of deadlock management
- </summary>
- </member>
- <member name="F:NMemory.Concurrency.DeadlockManagementStrategy.DeadlockDetection">
- <summary>
- Deadlock detection
- </summary>
- </member>
- <member name="F:NMemory.Concurrency.DeadlockManagementStrategy.DeadlockPrevention">
- <summary>
- Deadlock prevention
- </summary>
- </member>
- <member name="T:NMemory.Concurrency.Locks.ILockFactory">
- <summary>
- Represents a factory that is able to instantiate <c>ILock</c> objects
- </summary>
- </member>
- <member name="T:NMemory.Constraints.IConstraint">
- <summary>
- Defines functionality for constraint against database entities.
- </summary>
- <typeparam name="TEntity"> The type of the entity. </typeparam>
- </member>
- <member name="T:NMemory.Constraints.IConstraint`1">
- <summary>
- Defines functionality for constraint against database entities.
- </summary>
- <typeparam name="TEntity"> The type of the entity. </typeparam>
- </member>
- <member name="M:NMemory.Constraints.IConstraint`1.Apply(`0,NMemory.Execution.IExecutionContext)">
- <summary>
- Apply the constraint on an entity.
- </summary>
- <param name="entity"> The entity to apply the constraint on. </param>
- <param name="context"> The execution context. </param>
- </member>
- <member name="T:NMemory.Database">
- <summary>
- Represents an NMemory database instance.
- </summary>
- </member>
- <member name="M:NMemory.Database.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:NMemory.Database" /> class.
- </summary>
- </member>
- <member name="M:NMemory.Database.#ctor(NMemory.Modularity.IDatabaseComponentFactory)">
- <summary>
- Initializes a new instance of the <see cref="T:NMemory.Database" /> class with the specified database engine factory..
- </summary>
- <param name="databaseComponentFactory">The database component factory.</param>
- <exception cref="T:System.ArgumentNullException"><paramref name="databaseComponentFactory"/> is null.</exception>
- </member>
- <member name="P:NMemory.Database.StoredProcedures">
- <summary>
- Gets the collection of stored procedures contained by the database
- </summary>
- </member>
- <member name="P:NMemory.Database.Tables">
- <summary>
- Gets the collection of tables contained by the database.
- </summary>
- <value>
- A collection of tables.
- </value>
- </member>
- <member name="P:NMemory.Database.DatabaseEngine">
- <summary>
- Gets the database engine.
- </summary>
- <value>
- The database engine.
- </value>
- </member>
- <member name="F:NMemory.Exceptions.ErrorCode.GenericError">
- <summary>
- The generic error
- </summary>
- </member>
- <member name="F:NMemory.Exceptions.ErrorCode.ExistingKeyFound">
- <summary>
- The existing key found
- </summary>
- </member>
- <member name="F:NMemory.Exceptions.ErrorCode.TransactionHasAlreadyStarted">
- <summary>
- The transaction has already started
- </summary>
- </member>
- <member name="F:NMemory.Exceptions.ErrorCode.RelationError">
- <summary>
- Relation error
- </summary>
- </member>
- <member name="T:NMemory.Execution.Optimization.JoinGroup">
- <summary>
- Provides factory method for <see cref="!:GroupJoin<TOuter, TInner>"/> in order to
- achieve type impeance.
- </summary>
- </member>
- <member name="T:NMemory.Execution.Optimization.Rewriters.IndexAccessRewriter">
- <summary>
- Rewrites constant->member index access expression to constant expression.
- </summary>
- </member>
- <member name="T:NMemory.Execution.Optimization.Rewriters.InnerJoinLogicalRewriter">
- <summary>
- Searches for SelectMany based inner join calls and replaces it with Join call
- </summary>
- </member>
- <member name="T:NMemory.Execution.Optimization.Rewriters.OuterJoinLogicalRewriter">
- <summary>
- Searches for SelectMany based outer join calls and replaces it with GroupJoin call
- </summary>
- </member>
- <member name="T:NMemory.Execution.Optimization.Rewriters.QueryableRewriter">
- <summary>
- Represents an expression rewriter that replaces <see cref="!:System.Queryable"/>
- extension method calls with corresponding <see cref="!:System.Enumerable"/>
- extension method calls
- </summary>
- </member>
- <member name="M:NMemory.Execution.Optimization.Rewriters.QueryableRewriter.FindGenericType(System.Type,System.Type)">
- <summary>
- Finds the concrete type of the specified generic type definition.
- For example, if definition is IEnumerable><, than the type IList>string<>
- returns IEnumerable>string<
- </summary>
- <param name="definition">The generic type definition.</param>
- <param name="type">The type.</param>
- <returns>The generic type of the definition.</returns>
- </member>
- <member name="T:NMemory.Execution.Optimization.Rewriters.TableAccessRewriter">
- <summary>
- Rewrites all kind of table access expression to constant expression.
- </summary>
- </member>
- <member name="P:NMemory.Indexes.Index`2.SupportsIntervalSearch">
- <summary>
- Gets a value that indicates whether the index structure supports interval search.
- </summary>
- </member>
- <member name="T:NMemory.Modularity.IDatabaseComponentFactory">
- <summary>
- Provides functionality to instantiate the components of a database engine.
- </summary>
- </member>
- <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateConcurrencyManager">
- <summary>
- Creates a concurrency manager that handles the concurrent access of transactions.
- </summary>
- <returns>A concurrency manager.</returns>
- </member>
- <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateQueryCompiler">
- <summary>
- Creates a query compiler that optimizes and compiles database queries.
- </summary>
- <returns>A query compiler.</returns>
- </member>
- <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateQueryExecutor">
- <summary>
- Creates a query executor that executes compiled queries.
- </summary>
- <returns>A query executor.</returns>
- </member>
- <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateTransactionHandler">
- <summary>
-
- </summary>
- <returns></returns>
- </member>
- <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateLoggingPort">
- <summary>
-
- </summary>
- <returns></returns>
- </member>
- <member name="M:NMemory.Modularity.IDatabaseComponentFactory.CreateServiceProvider">
- <summary>
-
- </summary>
- <returns></returns>
- </member>
- <member name="T:NMemory.StoredProcedures.StoredProcedure`1">
- <summary>
- Represents a stored procedure that returns with a result set.
- </summary>
- <typeparam name="T">
- The type of the result set elements.
- </typeparam>
- </member>
- <member name="T:NMemory.Tables.ConstraintCollection`1">
- <summary>
- Represents a collection of contraints.
- </summary>
- <typeparam name="T">
- The type of the entity the constraints are applied on.
- </typeparam>
- </member>
- <member name="M:NMemory.Tables.ConstraintCollection`1.#ctor">
- <summary>
- Initializes a new instance of the <see cref="!:ContraintCollection<T>"/> class.
- </summary>
- </member>
- <member name="M:NMemory.Tables.ConstraintCollection`1.Apply(`0,NMemory.Execution.IExecutionContext,NMemory.Tables.ITable)">
- <summary>Applys all contraints on the specified entity.</summary>
- <param name="entity">The entity.</param>
- <param name="context">The execution context.</param>
- <param name="table">The table.</param>
- </member>
- <member name="M:NMemory.Tables.ConstraintCollection`1.Add(NMemory.Constraints.IConstraint{`0})">
- <summary>
- Adds a table constraint.
- </summary>
- <param name="constraint">
- The constraint. Note that you must not share this constraint instance across
- multiple tables.
- </param>
- </member>
- <member name="M:NMemory.Tables.ConstraintCollection`1.Add(NMemory.Constraints.IConstraintFactory{`0})">
- <summary>
- Adds a table constraint.
- </summary>
- <param name="constraintFactory">
- The constraint factory that instantiates a dedicated constraint instance for
- this table.
- </param>
- </member>
- <member name="T:NMemory.Tables.DefaultTable`2">
- <summary>
- Represents a database table.
- </summary>
- <typeparam name="TEntity">
- The type of the entities contained by the table
- </typeparam>
- <typeparam name="TPrimaryKey">
- The type of the primary key of the entities.
- </typeparam>
- </member>
- <member name="M:NMemory.Tables.DefaultTable`2.#ctor">
- <summary>
- Prevents a default instance of the <see cref="!:DefaultTable<TPrimaryKey>" />
- class from being created.
- </summary>
- </member>
- <member name="M:NMemory.Tables.DefaultTable`2.InsertCore(`0,NMemory.Transactions.Transaction)">
- <summary>
- Core implementation of an entity insert.
- </summary>
- <param name="entity">
- The entity that contains the primary key of the entity to be deleted.
- </param>
- <param name="transaction">
- The transaction within which the update operation executes.
- </param>
- </member>
- <member name="M:NMemory.Tables.DefaultTable`2.UpdateCore(System.Linq.Expressions.Expression,NMemory.Execution.IUpdater{`0},NMemory.Transactions.Transaction)">
- <summary>
- Core implementation of a bulk entity update.
- </summary>
- <param name="expression">
- A query expression that represents the entities to be updated.
- </param>
- <param name="updater">
- An expression that represents the update mechanism.
- </param>
- <param name="transaction">
- The transaction within which the update operation is executed.
- </param>
- <returns>
- The updated entities.
- </returns>
- </member>
- <member name="M:NMemory.Tables.DefaultTable`2.DeleteCore(System.Linq.Expressions.Expression,NMemory.Transactions.Transaction)">
- <summary>
- Core implementation of an entity delete.
- </summary>
- <param name="key">
- The primary key of the entity to be deleted.
- </param>
- <param name="transaction">
- The transaction within which the delete operation is executed.
- </param>
- </member>
- <member name="T:NMemory.Tables.IBulkTable`1">
- <summary>
- Defines bulk operations for a table.
- </summary>
- <typeparam name="TEntity">The type of the entities contained by the table.</typeparam>
- </member>
- <member name="M:NMemory.Tables.IBulkTable`1.Update(NMemory.Linq.TableQuery{`0},System.Linq.Expressions.Expression{System.Func{`0,`0}},NMemory.Transactions.Transaction)">
- <summary>
- Updates the entities.
- </summary>
- <param name="query">A query expression that represents the entities to be updated.</param>
- <param name="updater">An expression that represents the update logic.</param>
- <param name="transaction">The transaction within which the update operation is executed.</param>
- <returns>The updated entities</returns>
- </member>
- <member name="M:NMemory.Tables.IBulkTable`1.Delete(NMemory.Linq.TableQuery{`0},NMemory.Transactions.Transaction)">
- <summary>
- Deletes entities.
- </summary>
- <param name="query">The query that represents the entities to be deleted.</param>
- <param name="transaction">The transaction within which the delete operation is executed.</param>
- <returns>The count of the deleted entities.</returns>
- </member>
- <member name="M:NMemory.Tables.IReflectionTable.Insert(System.Object)">
- <summary>
- Inserts a new entity into the table.
- </summary>
- <param name="entity">An entity that contains the property values of the new entity.</param>
- </member>
- <member name="M:NMemory.Tables.IReflectionTable.Update(System.Object)">
- <summary>
- Updates the properties of an entity contained by the table.
- </summary>
- <param name="entity">An entity that contains the primary key of the entity to be updated and the new property values.</param>
- </member>
- <member name="M:NMemory.Tables.IReflectionTable.Delete(System.Object)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="entity">An entity that contains the primary key of the entity to be deleted.</param>
- </member>
- <member name="T:NMemory.Tables.ITable">
- <summary>
- Defines an interface for database tables.
- </summary>
- </member>
- <member name="P:NMemory.Tables.ITable.Database">
- <summary>
- Gets the database that contains the table.
- </summary>
- </member>
- <member name="P:NMemory.Tables.ITable.EntityType">
- <summary>
- Gets the type of the entities contained in the table.
- </summary>
- </member>
- <member name="P:NMemory.Tables.ITable.PrimaryKeyIndex">
- <summary>
- Gets the primary key index of the table.
- </summary>
- </member>
- <member name="P:NMemory.Tables.ITable.Indexes">
- <summary>
- Gets the indexes of the table.
- </summary>
- </member>
- <member name="E:NMemory.Tables.ITable.IndexChanged">
- <summary>
- Occurs when the indexes of the table are changed.
- </summary>
- </member>
- <member name="P:NMemory.Tables.ITable.Count">
- <summary>
- Gets the number of entities contained in the table.
- </summary>
- </member>
- <member name="T:NMemory.Tables.ITable`1">
- <summary>
- Defines an interface for database tables.
- </summary>
- <typeparam name="TEntity">
- The type of the entities contained by the table.
- </typeparam>
- </member>
- <member name="P:NMemory.Tables.ITable`1.PrimaryKeyIndex">
- <summary>
- Gets the primary key index of the table.
- </summary>
- </member>
- <member name="M:NMemory.Tables.ITable`1.Insert(`0)">
- <summary>
- Inserts a new entity into the table.
- </summary>
- <param name="entity">
- An entity that contains the property values of the new entity.
- </param>
- </member>
- <member name="M:NMemory.Tables.ITable`1.Insert(`0,NMemory.Transactions.Transaction)">
- <summary>
- Inserts a new entity into the table.
- </summary>
- <param name="entity">
- An entity that contains the property values of the new entity.
- </param>
- <param name="entity">
- The transaction within which the insert operation executes.
- </param>
- </member>
- <member name="M:NMemory.Tables.ITable`1.Update(`0)">
- <summary>
- Updates the properties of the specified entity contained by the table.
- </summary>
- <param name="entity">
- An entity that contains the primary key of the entity to be updated and the new
- property values.
- </param>
- </member>
- <member name="M:NMemory.Tables.ITable`1.Update(`0,NMemory.Transactions.Transaction)">
- <summary>
- Updates the properties of the specified contained by the table.
- </summary>
- <param name="entity">
- An entity that contains the primary key of the entity to be updated and the new
- property values.
- </param>
- <param name="entity">
- The transaction within which the update operation executes.
- </param>
- </member>
- <member name="M:NMemory.Tables.ITable`1.Delete(`0)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="entity">
- An entity that contains the primary key of the entity to be deleted.
- </param>
- </member>
- <member name="M:NMemory.Tables.ITable`1.Delete(`0,NMemory.Transactions.Transaction)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="entity">
- An entity that contains the primary key of the entity to be deleted.
- </param>
- <param name="entity">
- The transaction within which the delete operation executes.
- </param>
- </member>
- <member name="P:NMemory.Tables.ITable`1.Contraints">
- <summary>
- Gets the collection of contraints registered to table.
- </summary>
- <value>
- The contraints.
- </value>
- </member>
- <member name="T:NMemory.Tables.ITable`2">
- <summary>
- Defines an interface for database tables.
- </summary>
- <typeparam name="TEntity">
- The type of the entities contained by the table.
- </typeparam>
- <typeparam name="TPrimaryKey">
- The type of the primary key of the entities.
- </typeparam>
- </member>
- <member name="P:NMemory.Tables.ITable`2.PrimaryKeyIndex">
- <summary>
- Gets the primary key index of the table.
- </summary>
- </member>
- <member name="M:NMemory.Tables.ITable`2.Update(`1,`0)">
- <summary>
- Updates the properties of the specified entity contained by the table.
- </summary>
- <param name="key">
- The primary key of the entity to be updated.
- </param>
- <param name="entity">
- An entity that contains the new property values.
- </param>
- </member>
- <member name="M:NMemory.Tables.ITable`2.Update(`1,`0,NMemory.Transactions.Transaction)">
- <summary>
- Updates the properties of the specified entity contained by the table.
- </summary>
- <param name="key">
- The primary key of the entity to be updated.
- </param>
- <param name="entity">
- An entity that contains the new property values.
- </param>
- <param name="entity">
- The transaction within which the update operation is executed.
- </param>
- </member>
- <member name="M:NMemory.Tables.ITable`2.Delete(`1)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="key">
- The primary key of the entity to be deleted.
- </param>
- </member>
- <member name="M:NMemory.Tables.ITable`2.Delete(`1,NMemory.Transactions.Transaction)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="key">
- The primary key of the entity to be deleted.
- </param>
- <param name="entity">
- The transaction within which the update operation is executed.
- </param>
- </member>
- <member name="T:NMemory.Tables.Relation`4">
- <summary>
- Represents a relation between two database tables.
- </summary>
- <typeparam name="TPrimary">
- The type of the entities of the referred table.
- </typeparam>
- <typeparam name="TPrimaryKey">
- The type of the primary key.
- </typeparam>
- <typeparam name="TForeign">
- The type of the entities of the referring table.
- </typeparam>
- <typeparam name="TForeignKey">
- The type of the foreign key.
- </typeparam>
- </member>
- <member name="T:NMemory.Tables.RelationOptions">
- <summary>
- Represents options of a relation.
- </summary>
- </member>
- <member name="M:NMemory.Tables.RelationOptions.#ctor(System.Boolean)">
- <summary>
- Initializes a new instance of the <see cref="T:NMemory.Tables.RelationOptions"/> class.
- </summary>
- <param name="cascadedDeletion">
- if set to <c>true</c> cascaded deletion will be enabled
- </param>
- </member>
- <member name="P:NMemory.Tables.RelationOptions.CascadedDeletion">
- <summary>
- Gets a value that indicates whether the deletion of a referred (primary) entity
- should result in the deletion of the referring (foreign) entities.
- </summary>
- <value>
- <c>true</c> if enabled; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:NMemory.Tables.TableCollection">
- <summary>
- Represents a collection of the tables of the database.
- </summary>
- </member>
- <member name="M:NMemory.Tables.TableCollection.GetAllTables">
- <summary>
- Returns all database tables.
- </summary>
- <returns> A list of the tables. </returns>
- </member>
- <member name="M:NMemory.Tables.TableCollection.GetAllRelations">
- <summary>
- Returns all database table relations.
- </summary>
- <returns> A list of the table relations. </returns>
- </member>
- <member name="M:NMemory.Tables.TableCollection.Create``2(System.Linq.Expressions.Expression{System.Func{``0,``1}},NMemory.Tables.IdentitySpecification{``0})">
- <summary>
- Initializes a database table.
- </summary>
- <typeparam name="TEntity">
- Specifies the type of the entities of the table.
- </typeparam>
- <typeparam name="TPrimaryKey">
- Specifies the type of the primary key of the entities.
- </typeparam>
- <param name="primaryKey">
- An expression that represents the primary key of the entities.
- </param>
- <param name="identitySpecification">
- An IdentitySpecification to set an identity field.
- </param>
- <returns>
- An Table that represents the defined table object.
- </returns>
- </member>
- <member name="M:NMemory.Tables.TableCollection.Create``2(NMemory.Indexes.IKeyInfo{``0,``1},NMemory.Tables.IdentitySpecification{``0},System.Object)">
- <summary>
- Initializes a database table.
- </summary>
- <typeparam name="TEntity">
- Specifies the type of the entities of the table.
- </typeparam>
- <typeparam name="TPrimaryKey">
- Specifies the type of the primary key of the entities.
- </typeparam>
- <param name="primaryKey">
- An IKeyInfo object that represents the primary key of the entities.
- </param>
- <param name="identitySpecification">
- An IdentitySpecification to set an identity field.
- </param>
- <returns>
- The table.
- </returns>
- </member>
- <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})">
- <summary>
- Creates a relation between two tables.
- </summary>
- <typeparam name="TPrimary">
- The type of the entities of the primary table.
- </typeparam>
- <typeparam name="TPrimaryKey">
- The type of the primary key of the entities of the primary table.
- </typeparam>
- <typeparam name="TForeign">
- The type of the entities of the foreign table.
- </typeparam>
- <typeparam name="TForeignKey">
- Type type of the foreign key of the foreign table.
- </typeparam>
- <param name="primaryIndex">
- An IIndex that specifies the primary key.
- </param>
- <param name="foreignIndex">
- An IIndex that specifies the foreign key.
- </param>
- <param name="convertForeignToPrimary">
- A function to convert a foreign key to the corresponding primary key.
- </param>
- <param name="convertPrimaryToForeign">
- A function to convert a primary key to the corresponding foreign key.
- </param>
- <returns>
- The relation.
- </returns>
- </member>
- <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)">
- <summary>
- Creates a relation between two tables.
- </summary>
- <typeparam name="TPrimary">
- The type of the entities of the primary table.
- </typeparam>
- <typeparam name="TPrimaryKey">
- The type of the primary key of the entities of the primary table.
- </typeparam>
- <typeparam name="TForeign">
- The type of the entities of the foreign table.
- </typeparam>
- <typeparam name="TForeignKey">
- Type type of the foreign key of the foreign table.
- </typeparam>
- <param name="primaryIndex">
- An IIndex that specifies the primary key.
- </param>
- <param name="foreignIndex">
- An IIndex that specifies the foreign key.
- </param>
- <param name="convertForeignToPrimary">
- A function to convert a foreign key to the corresponding primary key.
- </param>
- <param name="convertPrimaryToForeign">
- A function to convert a primary key to the corresponding foreign key.
- </param>
- <returns>
- The relation.
- </returns>
- </member>
- <member name="T:NMemory.Tables.Table`2">
- <summary>
- Represents a database table.
- </summary>
- <typeparam name="TEntity">
- The type of the entities contained by the table
- </typeparam>
- <typeparam name="TPrimaryKey">
- The type of the primary key of the entities.
- </typeparam>
- </member>
- <member name="M:NMemory.Tables.Table`2.#ctor(NMemory.Modularity.IDatabase,NMemory.Indexes.IKeyInfo{`0,`1},NMemory.Tables.IdentitySpecification{`0},System.Object)">
- <summary>
- Initializes a new instance of the <see cref="T:NMemory.Tables.Table`2"/>
- class.
- </summary>
- <param name="database"> The database. </param>
- <param name="primaryKey"> The primary key. </param>
- <param name="identitySpecification"> The identity specification. </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.#ctor">
- <summary>
- Prevents a default instance of the <see cref="!:Table<TPrimaryKey>" /> class from
- being created.
- </summary>
- </member>
- <member name="E:NMemory.Tables.Table`2.IndexChanged">
- <summary>
- Occurs when the indexes of the table are changed.
- </summary>
- </member>
- <member name="M:NMemory.Tables.Table`2.Insert(`0)">
- <summary>
- Inserts the specified entity.
- </summary>
- <param name="entity"> The entity. </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.Insert(`0,NMemory.Transactions.Transaction)">
- <summary>
- Inserts the specified entity.
- </summary>
- <param name="entity"> The entity. </param>
- <param name="transaction"> The transaction. </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.InsertCore(`0,NMemory.Transactions.Transaction)">
- <summary>
- Core implementation of an entity insert.
- </summary>
- <param name="entity">
- The entity that contains the primary key of the entity to be deleted.
- </param>
- <param name="transaction">
- The transaction within which the update operation executes.
- </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.Update(`0)">
- <summary>
- Updates the properties of the specified entity contained by the table.
- </summary>
- <param name="entity">
- An entity that contains the primary key of the entity to be updated and the new
- property values.
- </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.Update(`0,NMemory.Transactions.Transaction)">
- <summary>
- Updates the properties of the specified contained by the table.
- </summary>
- <param name="entity">
- An entity that contains the primary key of the entity to be updated and the new
- property values.
- </param>
- <param name="entity">
- The transaction within which the update operation executes.
- </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.Update(`1,`0)">
- <summary>
- Updates the properties of the specified entity contained by the table.
- </summary>
- <param name="key">
- The primary key of the entity to be updated.
- </param>
- <param name="entity">
- An entity that contains the new property values.
- </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.Update(`1,`0,NMemory.Transactions.Transaction)">
- <summary>
- Updates the properties of the specified entity contained by the table.
- </summary>
- <param name="key">
- The primary key of the entity to be updated.
- </param>
- <param name="entity">
- An entity that contains the new property values.
- </param>
- <param name="entity">
- The transaction within which the update operation is executed.
- </param>
- </member>
- <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)">
- <summary>
- Updates the entities.
- </summary>
- <param name="query">
- The query expression that represents the entities to be updated.
- </param>
- <param name="updater">
- The expression that represents the update logic.
- </param>
- <param name="transaction">
- The transaction within which the update operation is executed.
- </param>
- <returns>
- The updated entities.
- </returns>
- </member>
- <member name="M:NMemory.Tables.Table`2.UpdateCore(System.Linq.Expressions.Expression,NMemory.Execution.IUpdater{`0},NMemory.Transactions.Transaction)">
- <summary>
- Core implementation of a bulk entity update.
- </summary>
- <param name="expression">
- The query expression that represents the entities to be updated.
- </param>
- <param name="updater">
- The updater.
- </param>
- <param name="transaction">
- The transaction within which the update operation is executed.
- </param>
- <returns> The updated entities. </returns>
- </member>
- <member name="M:NMemory.Tables.Table`2.Delete(`0)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="entity">
- An entity that contains the primary key of the entity to be deleted.
- </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.Delete(`0,NMemory.Transactions.Transaction)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="key">
- The primary key of the entity to be deleted.
- </param>
- <param name="entity">
- The transaction within which the update operation is executed.
- </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.Delete(`1)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="key">
- The primary key of the entity to be deleted.
- </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.Delete(`1,NMemory.Transactions.Transaction)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="key">
- The primary key of the entity to be deleted.
- </param>
- <param name="entity">
- The transaction within which the update operation is executed.
- </param>
- </member>
- <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IBulkTable{TEntity}#Delete(NMemory.Linq.TableQuery{`0},NMemory.Transactions.Transaction)">
- <summary>
- Deletes entities.
- </summary>
- <param name="query">
- The query that represents the entities to be deleted.
- </param>
- <param name="transaction">
- The transaction within which the delete operation is executed.
- </param>
- <returns>
- The count of the deleted entities.
- </returns>
- </member>
- <member name="M:NMemory.Tables.Table`2.DeleteCore(System.Linq.Expressions.Expression,NMemory.Transactions.Transaction)">
- <summary>
- Core implementation of a bulk entity delete.
- </summary>
- <param name="expression">
- A query expression that represents the entities to be deleted.
- </param>
- <param name="transaction">
- The transaction within which the delete operation is executed.
- </param>
- <returns>
- The count of deleted entities.
- </returns>
- </member>
- <member name="P:NMemory.Tables.Table`2.Count">
- <summary>
- Gets the number of entities contained by the table.
- </summary>
- </member>
- <member name="M:NMemory.Tables.Table`2.CreateIndex``1(NMemory.Indexes.IIndexFactory,System.Linq.Expressions.Expression{System.Func{`0,``0}})">
- <summary>
- Creates a new index.
- </summary>
- <typeparam name="TKey">
- The type of the index key.
- </typeparam>
- <param name="indexFactory">
- The index factory.
- </param>
- <param name="keySelector">
- The expression representing the definition of the index key.
- </param>
- <returns>
- The index.
- </returns>
- </member>
- <member name="M:NMemory.Tables.Table`2.CreateIndex``1(NMemory.Indexes.IIndexFactory,NMemory.Indexes.IKeyInfo{`0,``0})">
- <summary>
- Creates a new index.
- </summary>
- <typeparam name="TKey"> The type of the index key. </typeparam>
- <param name="indexFactory"> The index factory. </param>
- <param name="keyInfo"> The definition of the index key. </param>
- <returns> The index. </returns>
- </member>
- <member name="M:NMemory.Tables.Table`2.CreateUniqueIndex``1(NMemory.Indexes.IIndexFactory,System.Linq.Expressions.Expression{System.Func{`0,``0}})">
- <summary>
- Creates a new unique index.
- </summary>
- <typeparam name="TUniqueKey">
- The type of the unique index key.
- </typeparam>
- <param name="indexFactory">
- The index factory.
- </param>
- <param name="key">
- The expression representing the definition of the index key.
- </param>
- <returns>
- The unique index.
- </returns>
- </member>
- <member name="M:NMemory.Tables.Table`2.CreateUniqueIndex``1(NMemory.Indexes.IIndexFactory,NMemory.Indexes.IKeyInfo{`0,``0})">
- <summary>
- Creates a new unique index.
- </summary>
- <typeparam name="TUniqueKey">
- The type of the unqiue index key.
- </typeparam>
- <param name="indexFactory">
- The index factory.
- </param>
- <param name="keyInfo">
- The definition of the index key
- </param>
- <returns> The unique index. </returns>
- </member>
- <member name="P:NMemory.Tables.Table`2.Indexes">
- <summary>
- Gets the indexes of the table.
- </summary>
- </member>
- <member name="P:NMemory.Tables.Table`2.PrimaryKeyIndex">
- <summary>
- Gets the primary key index of the table.
- </summary>
- </member>
- <member name="P:NMemory.Tables.Table`2.NMemory#Tables#ITable{TEntity}#PrimaryKeyIndex">
- <summary>
- Gets the index of the primary key.
- </summary>
- <value>
- The index of the primary key.
- </value>
- </member>
- <member name="P:NMemory.Tables.Table`2.NMemory#Tables#ITable#PrimaryKeyIndex">
- <summary>
- Gets the index of the primary key.
- </summary>
- <value>
- The index of the primary key.
- </value>
- </member>
- <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IReflectionTable#Update(System.Object)">
- <summary>
- Updates the properties of an entity contained by the table.
- </summary>
- <param name="entity">An entity that contains the primary key of the entity to be updated and the new property values.</param>
- </member>
- <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IReflectionTable#Insert(System.Object)">
- <summary>
- Inserts a new entity into the table.
- </summary>
- <param name="entity">An entity that contains the property values of the new entity.</param>
- </member>
- <member name="M:NMemory.Tables.Table`2.NMemory#Tables#IReflectionTable#Delete(System.Object)">
- <summary>
- Deletes an entity from the table.
- </summary>
- <param name="entity">An entity that contains the primary key of the entity to be deleted.</param>
- </member>
- <member name="M:NMemory.Tables.Table`2.ToString">
- <summary>
- Returns a <see cref="T:System.String"/> that represents this instance.
- </summary>
- <returns>
- A <see cref="T:System.String"/> that represents this instance.
- </returns>
- </member>
- <member name="M:NMemory.Tables.Table`2.CreateStoredEntity">
- <summary>
- Creates an entity that is meant to be stored in the table.
- </summary>
- <returns>
- The entity.
- </returns>
- </member>
- </members>
- </doc>
|