コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MemoryTable"/> class.
 /// </summary>
 /// <param name="controller">The database controller object.</param>
 /// <param name="tableName">The name of the table.</param>
 protected MemoryTable(DatabaseControllerBase controller, string tableName) : this(controller, DatabaseControllerBase.MainSchemaName, tableName)
 {
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MemoryTable"/> class.
 /// </summary>
 /// <param name="controller">The database controller object.</param>
 /// <param name="schemaName">The name of the schema this table belongs to.</param>
 /// <param name="tableName">The name of the table.</param>
 protected MemoryTable(DatabaseControllerBase controller, string schemaName, string tableName)
     : base(controller, schemaName, tableName)
 {
     IsReadOnly = true;
 }