/// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public UntypedRelationalValueBufferFactory(
     [NotNull] RelationalValueBufferFactoryDependencies dependencies,
     [NotNull] IReadOnlyList <TypeMaterializationInfo> mappingInfo,
     [CanBeNull] Action <object[]> processValuesAction)
 {
     _processValuesAction = processValuesAction;
 }
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public RemappingUntypedRelationalValueBufferFactory(
     [NotNull] RelationalValueBufferFactoryDependencies dependencies,
     [NotNull] IReadOnlyList <int> indexMap,
     [CanBeNull] Action <object[]> processValuesAction)
 {
     _indexMap            = indexMap;
     _processValuesAction = processValuesAction;
 }
 public CassandraTypedRelationalValueBufferFactory(RelationalValueBufferFactoryDependencies dependencies) : base(dependencies)
 {
 }
コード例 #4
0
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public TypedRelationalValueBufferFactory(
     [NotNull] RelationalValueBufferFactoryDependencies dependencies,
     [NotNull] Func <DbDataReader, object[]> valueFactory)
 {
     _valueFactory = valueFactory;
 }
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public UntypedRelationalValueBufferFactory(
     [NotNull] RelationalValueBufferFactoryDependencies dependencies,
     [CanBeNull] Action <object[]> processValuesAction)
 {
     _processValuesAction = processValuesAction;
 }
コード例 #6
0
 public MySQLTypedRelationalValueBufferFactory(
     [NotNull] RelationalValueBufferFactoryDependencies dependencies,
     [NotNull] Func <DbDataReader, object[]> valueFactory)
     : base(dependencies, valueFactory)
 {
 }
コード例 #7
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="TypedRelationalValueBufferFactoryFactory" /> class.
 /// </summary>
 /// <param name="dependencies">Parameter object containing dependencies for this service.</param>
 public TypedRelationalValueBufferFactoryFactory(RelationalValueBufferFactoryDependencies dependencies)
 {
     Dependencies = dependencies;
 }