Class SequenceRowError
Contains information about skipped rows per sequence in a row insert request
Inherited Members
Namespace: Cognite.Extensions
Assembly: Cognite.Extensions.dll
Syntax
public class SequenceRowError
Constructors
| Edit this page View SourceSequenceRowError(IEnumerable<SequenceRow>, Identity)
Constructor for skipped rows
Declaration
public SequenceRowError(IEnumerable<SequenceRow> skippedRows, Identity id)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<SequenceRow> | skippedRows | Rows skipped due to this error |
Identity | id | Id of offending sequence |
SequenceRowError(IEnumerable<SequenceRow>, IEnumerable<string>, Identity)
Constructor for missing columns
Declaration
public SequenceRowError(IEnumerable<SequenceRow> skippedRows, IEnumerable<string> badColumns, Identity id)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<SequenceRow> | skippedRows | Rows skipped due to this error |
IEnumerable<string> | badColumns | Bad columns |
Identity | id | Id of offending sequence |
Properties
| Edit this page View SourceBadColumns
Missing columns, if any
Declaration
public IEnumerable<string>? BadColumns { get; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
Id
Id of sequence
Declaration
public Identity Id { get; }
Property Value
Type | Description |
---|---|
Identity |
SkippedRows
Bad rows
Declaration
public IEnumerable<SequenceRow> SkippedRows { get; }
Property Value
Type | Description |
---|---|
IEnumerable<SequenceRow> |