This is public to allow tests to construct instances for production code to consume;
production code should not normally construct instances itself. This constructor does not
currently allow customization based on whether timestamps are represented using Int64
values, and always assumes floating point values.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-28 UTC."],[[["\u003cp\u003eThe latest version of the \u003ccode\u003eBigQueryRow\u003c/code\u003e class is 3.11.0, part of the Google.Cloud.BigQuery.V2 API, which has documentation for versions ranging from 2.2.0 to 3.11.0.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eBigQueryRow\u003c/code\u003e represents a single row within a result set from a BigQuery query or a listed table.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eBigQueryRow\u003c/code\u003e class provides indexed and named property accessors allowing you to retrieve cell values by index or field name, respectively, in a format of an \u003ccode\u003eobject\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eBigQueryRow\u003c/code\u003e instances can be constructed via the \u003ccode\u003eBigQueryRow(TableRow rawRow, TableSchema schema)\u003c/code\u003e constructor, using both a \u003ccode\u003eTableRow\u003c/code\u003e and a \u003ccode\u003eTableSchema\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe class contains two read-only properties, \u003ccode\u003eRawRow\u003c/code\u003e and \u003ccode\u003eSchema\u003c/code\u003e, that provide access to the underlying \u003ccode\u003eTableRow\u003c/code\u003e and \u003ccode\u003eTableSchema\u003c/code\u003e objects.\u003c/p\u003e\n"]]],[],null,["# Google BigQuery v2 API - Class BigQueryRow (3.11.0)\n\nVersion latestkeyboard_arrow_down\n\n- [3.11.0 (latest)](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/latest/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.10.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.10.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.9.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.9.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.8.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.8.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.7.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.7.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.6.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.6.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.5.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.5.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.4.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.4.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.3.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.3.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.2.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.2.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.1.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.1.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [3.0.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/3.0.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [2.4.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/2.4.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [2.3.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/2.3.0/Google.Cloud.BigQuery.V2.BigQueryRow)\n- [2.2.0](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/2.2.0/Google.Cloud.BigQuery.V2.BigQueryRow) \n\n public sealed class BigQueryRow\n\nReference documentation and code samples for the Google BigQuery v2 API class BigQueryRow.\n\nA row in a result set, which may be from a query or from listing the rows in a table. \n\nInheritance\n-----------\n\n[object](https://learn.microsoft.com/dotnet/api/system.object) \\\u003e BigQueryRow \n\nInherited Members\n-----------------\n\n[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode) \n[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype) \n[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)\n\nNamespace\n---------\n\n[Google.Cloud.BigQuery.V2](/dotnet/docs/reference/Google.Cloud.BigQuery.V2/latest/Google.Cloud.BigQuery.V2)\n\nAssembly\n--------\n\nGoogle.Cloud.BigQuery.V2.dll\n\nConstructors\n------------\n\n### BigQueryRow(TableRow, TableSchema)\n\n public BigQueryRow(TableRow rawRow, TableSchema schema)\n\nConstructs a row from the underlying REST-ful resource and schema.\n\n**Remarks** \nThis is public to allow tests to construct instances for production code to consume;\nproduction code should not normally construct instances itself. This constructor does not\ncurrently allow customization based on whether timestamps are represented using Int64\nvalues, and always assumes floating point values.\n\nProperties\n----------\n\n### this\\[int\\]\n\n public object this[int index] { get; }\n\nRetrieves a cell value by index.\n\n### this\\[string\\]\n\n public object this[string name] { get; }\n\nRetrieves a cell value by field name.\n\n### RawRow\n\n public TableRow RawRow { get; }\n\nThe underlying REST-ful resource for the row.\n\n### Schema\n\n public TableSchema Schema { get; }\n\nThe schema to use when interpreting the row results."]]