> ## Documentation Index
> Fetch the complete documentation index at: https://easyaf.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# IndexedDbObjectStore

> Defines a store to add to database

## Definition

**Assembly:** CloudNimble.BlazorEssentials.IndexedDb.dll

**Namespace:** CloudNimble.BlazorEssentials.IndexedDb

**Inheritance:** System.Object

## Syntax

```csharp theme={"dark"}
CloudNimble.BlazorEssentials.IndexedDb.IndexedDbObjectStore
```

## Summary

Defines a store to add to database

## Constructors

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor

Add new ObjectStore definition

#### Syntax

```csharp theme={"dark"}
public IndexedDbObjectStore(CloudNimble.BlazorEssentials.IndexedDb.IndexedDbDatabase database, CloudNimble.BlazorEssentials.IndexedDb.ObjectStoreAttribute attribute = null)
```

#### Parameters

| Name        | Type                                                          | Description |
| ----------- | ------------------------------------------------------------- | ----------- |
| `database`  | `CloudNimble.BlazorEssentials.IndexedDb.IndexedDbDatabase`    | -           |
| `attribute` | `CloudNimble.BlazorEssentials.IndexedDb.ObjectStoreAttribute` | -           |

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor

Add new ObjectStore definition

#### Syntax

```csharp theme={"dark"}
public IndexedDbObjectStore(CloudNimble.BlazorEssentials.IndexedDb.IndexedDbDatabase database, string name, string keyPath = "id", bool autoIncrement = false)
```

#### Parameters

| Name            | Type                                                       | Description |
| --------------- | ---------------------------------------------------------- | ----------- |
| `database`      | `CloudNimble.BlazorEssentials.IndexedDb.IndexedDbDatabase` | -           |
| `name`          | `string`                                                   | -           |
| `keyPath`       | `string`                                                   | -           |
| `autoIncrement` | `bool`                                                     | -           |

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public Object()
```

## Properties

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> AutoIncrement

If true, the object store has a key generator. Defaults to false.
Note that every object store has its own separate auto increment counter.

#### Syntax

```csharp theme={"dark"}
public bool AutoIncrement { get; init; }
```

#### Property Value

Type: `bool`

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Database

IDMManager

#### Syntax

```csharp theme={"dark"}
public CloudNimble.BlazorEssentials.IndexedDb.IndexedDbDatabase Database { get; init; }
```

#### Property Value

Type: `CloudNimble.BlazorEssentials.IndexedDb.IndexedDbDatabase`

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Indexes

Provides a set of additional indexes if required.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<CloudNimble.BlazorEssentials.IndexedDb.IndexedDbIndex> Indexes { get; init; }
```

#### Property Value

Type: `System.Collections.Generic.List<CloudNimble.BlazorEssentials.IndexedDb.IndexedDbIndex>`

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> KeyPath

the identifier for the property in the object/record that is saved and is to be indexed.
can be multiple properties separated by comma
If this property is null, the application must provide a key for each modification operation.

#### Syntax

```csharp theme={"dark"}
public string KeyPath { get; init; }
```

#### Property Value

Type: `string?`

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Name

The name for the store

#### Syntax

```csharp theme={"dark"}
public string Name { get; internal set; }
```

#### Property Value

Type: `string`

## Methods

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> AddAsync

Adds a new record/object to the specified ObjectStore

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task AddAsync<TData>(TData data) where TData : notnull
```

#### Parameters

| Name   | Type    | Description |
| ------ | ------- | ----------- |
| `data` | `TData` | -           |

#### Returns

Type: `System.Threading.Tasks.Task`

#### Type Parameters

* `TData` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> AddAsync

Adds a new record/object to the specified ObjectStore

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<TKey> AddAsync<TData, TKey>(TData data)
```

#### Parameters

| Name   | Type    | Description |
| ------ | ------- | ----------- |
| `data` | `TData` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<TKey>`

#### Type Parameters

* `TData` -
* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> AddAsync

Adds a new record/object to the specified ObjectStore

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<TKey> AddAsync<TData, TKey>(TData data, TKey key)
```

#### Parameters

| Name   | Type    | Description |
| ------ | ------- | ----------- |
| `data` | `TData` | -           |
| `key`  | `TKey`  | -           |

#### Returns

Type: `System.Threading.Tasks.Task<TKey>`

#### Type Parameters

* `TData` -
* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> BatchAddAsync

Add an array of new record/object in one transaction to the specified store

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task BatchAddAsync<TData>(TData[] data)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `data` | `TData[]` | -           |

#### Returns

Type: `System.Threading.Tasks.Task`

#### Type Parameters

* `TData` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> BatchAddAsync

Add an array of new record/object in one transaction to the specified store

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<TKey[]> BatchAddAsync<TData, TKey>(TData[] data)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `data` | `TData[]` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<TKey[]>`

#### Type Parameters

* `TData` -
* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> BatchDeleteAsync

Delete multiple records from the store based on the id

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task BatchDeleteAsync<TKey>(TKey[] ids)
```

#### Parameters

| Name  | Type     | Description |
| ----- | -------- | ----------- |
| `ids` | `TKey[]` | -           |

#### Returns

Type: `System.Threading.Tasks.Task`

#### Type Parameters

* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> BatchPutAsync

Put an array of new record/object in one transaction to the specified store

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task BatchPutAsync<TData>(TData[] data)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `data` | `TData[]` | -           |

#### Returns

Type: `System.Threading.Tasks.Task`

#### Type Parameters

* `TData` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> BatchPutAsync

Put an array of new record/object in one transaction to the specified store

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<TKey[]> BatchPutAsync<TData, TKey>(TData[] data)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `data` | `TData[]` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<TKey[]>`

#### Type Parameters

* `TData` -
* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ClearStoreAsync

Clears all of the records from a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task ClearStoreAsync()
```

#### Returns

Type: `System.Threading.Tasks.Task`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> CountAsync

Count records in ObjectStore

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<int> CountAsync()
```

#### Returns

Type: `System.Threading.Tasks.Task<int>`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> CountAsync

Count records in ObjectStore

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<int> CountAsync<TKey>(TKey key)
```

#### Parameters

| Name  | Type   | Description |
| ----- | ------ | ----------- |
| `key` | `TKey` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<int>`

#### Type Parameters

* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> CountAsync

Count records in ObjectStore

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<int> CountAsync<TKey>(CloudNimble.BlazorEssentials.IndexedDb.KeyRange<TKey> key)
```

#### Parameters

| Name  | Type                                                    | Description |
| ----- | ------------------------------------------------------- | ----------- |
| `key` | `CloudNimble.BlazorEssentials.IndexedDb.KeyRange<TKey>` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<int>`

#### Type Parameters

* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> DeleteAsync

Deletes a record from the store based on the id

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task DeleteAsync<TKey>(TKey key) where TKey : notnull
```

#### Parameters

| Name  | Type   | Description |
| ----- | ------ | ----------- |
| `key` | `TKey` | -           |

#### Returns

Type: `System.Threading.Tasks.Task`

#### Type Parameters

* `TKey` -

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual bool Equals(object obj)
```

#### Parameters

| Name  | Type      | Description |
| ----- | --------- | ----------- |
| `obj` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool Equals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAllAsync

Gets all of the records in a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> GetAllAsync<TResult>(System.Nullable<int> count = null)
```

#### Parameters

| Name    | Type                   | Description |
| ------- | ---------------------- | ----------- |
| `count` | `System.Nullable<int>` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAllAsync

Gets all of the records by Key in a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> GetAllAsync<TKey, TResult>(TKey key, System.Nullable<int> count = null)
```

#### Parameters

| Name    | Type                   | Description |
| ------- | ---------------------- | ----------- |
| `key`   | `TKey`                 | -           |
| `count` | `System.Nullable<int>` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAllAsync

Gets all of the records by KeyRange in a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> GetAllAsync<TKey, TResult>(CloudNimble.BlazorEssentials.IndexedDb.KeyRange<TKey> key, System.Nullable<int> count = null)
```

#### Parameters

| Name    | Type                                                    | Description |
| ------- | ------------------------------------------------------- | ----------- |
| `key`   | `CloudNimble.BlazorEssentials.IndexedDb.KeyRange<TKey>` | -           |
| `count` | `System.Nullable<int>`                                  | -           |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAllAsync

Gets all of the records by ArrayKey in a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> GetAllAsync<TKey, TResult>(TKey[] key)
```

#### Parameters

| Name  | Type     | Description |
| ----- | -------- | ----------- |
| `key` | `TKey[]` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAllKeysAsync

Gets all of the records keys in a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> GetAllKeysAsync<TResult>(System.Nullable<int> count = null)
```

#### Parameters

| Name    | Type                   | Description |
| ------- | ---------------------- | ----------- |
| `count` | `System.Nullable<int>` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAllKeysAsync

Gets all of the records keys by Key in a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> GetAllKeysAsync<TKey, TResult>(TKey key, System.Nullable<int> count = null)
```

#### Parameters

| Name    | Type                   | Description |
| ------- | ---------------------- | ----------- |
| `key`   | `TKey`                 | -           |
| `count` | `System.Nullable<int>` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAllKeysAsync

Gets all of the records by KeyRange in a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> GetAllKeysAsync<TKey, TResult>(CloudNimble.BlazorEssentials.IndexedDb.KeyRange<TKey> key, System.Nullable<int> count = null)
```

#### Parameters

| Name    | Type                                                    | Description |
| ------- | ------------------------------------------------------- | ----------- |
| `key`   | `CloudNimble.BlazorEssentials.IndexedDb.KeyRange<TKey>` | -           |
| `count` | `System.Nullable<int>`                                  | -           |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAllKeysAsync

Gets all of the records by ArrayKey in a given store.

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> GetAllKeysAsync<TKey, TResult>(TKey[] key)
```

#### Parameters

| Name  | Type     | Description |
| ----- | -------- | ----------- |
| `key` | `TKey[]` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetAsync

Retrieve a record by Key

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<TResult> GetAsync<TKey, TResult>(TKey key)
```

#### Parameters

| Name  | Type   | Description           |
| ----- | ------ | --------------------- |
| `key` | `TKey` | the key of the record |

#### Returns

Type: `System.Threading.Tasks.Task<TResult?>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetHashCode <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual int GetHashCode()
```

#### Returns

Type: `int`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetKeyAsync

Retrieve a record key by Key

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<TResult> GetKeyAsync<TKey, TResult>(TKey key)
```

#### Parameters

| Name  | Type   | Description           |
| ----- | ------ | --------------------- |
| `key` | `TKey` | the key of the record |

#### Returns

Type: `System.Threading.Tasks.Task<TResult?>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetType <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public System.Type GetType()
```

#### Returns

Type: `System.Type`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> MemberwiseClone <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
protected internal object MemberwiseClone()
```

#### Returns

Type: `object`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> PutAsync

Updates and existing record

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task PutAsync<TData>(TData data) where TData : notnull
```

#### Parameters

| Name   | Type    | Description |
| ------ | ------- | ----------- |
| `data` | `TData` | -           |

#### Returns

Type: `System.Threading.Tasks.Task`

#### Type Parameters

* `TData` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> PutAsync

Updates and existing record

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<TKey> PutAsync<TData, TKey>(TData data)
```

#### Parameters

| Name   | Type    | Description |
| ------ | ------- | ----------- |
| `data` | `TData` | -           |

#### Returns

Type: `System.Threading.Tasks.Task<TKey>`

#### Type Parameters

* `TData` -
* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> PutAsync

Updates and existing record

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<TKey> PutAsync<TData, TKey>(TData data, TKey key)
```

#### Parameters

| Name   | Type    | Description |
| ------ | ------- | ----------- |
| `data` | `TData` | -           |
| `key`  | `TKey`  | -           |

#### Returns

Type: `System.Threading.Tasks.Task<TKey>`

#### Type Parameters

* `TData` -
* `TKey` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> QueryAsync

Gets all of the records using a filter expression

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> QueryAsync<TResult>(string filter, System.Nullable<int> count = null, System.Nullable<int> skip = null)
```

#### Parameters

| Name     | Type                   | Description                                                                       |
| -------- | ---------------------- | --------------------------------------------------------------------------------- |
| `filter` | `string`               | expression that evaluates to true/false, each record es passed to "obj" parameter |
| `count`  | `System.Nullable<int>` | -                                                                                 |
| `skip`   | `System.Nullable<int>` | -                                                                                 |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> QueryAsync

Gets all of the records using a filter expression

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> QueryAsync<TKey, TResult>(string name, string filter, TKey key, System.Nullable<int> count = null, System.Nullable<int> skip = null)
```

#### Parameters

| Name     | Type                   | Description                                                                       |
| -------- | ---------------------- | --------------------------------------------------------------------------------- |
| `name`   | `string`               | -                                                                                 |
| `filter` | `string`               | expression that evaluates to true/false, each record es passed to "obj" parameter |
| `key`    | `TKey`                 | -                                                                                 |
| `count`  | `System.Nullable<int>` | -                                                                                 |
| `skip`   | `System.Nullable<int>` | -                                                                                 |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> QueryAsync

Gets all of the records using a filter expression

#### Syntax

```csharp theme={"dark"}
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> QueryAsync<TKey, TResult>(string filter, CloudNimble.BlazorEssentials.IndexedDb.KeyRange<TKey> key, System.Nullable<int> count = null, System.Nullable<int> skip = null)
```

#### Parameters

| Name     | Type                                                    | Description                                                                       |
| -------- | ------------------------------------------------------- | --------------------------------------------------------------------------------- |
| `filter` | `string`                                                | expression that evaluates to true/false, each record es passed to "obj" parameter |
| `key`    | `CloudNimble.BlazorEssentials.IndexedDb.KeyRange<TKey>` | -                                                                                 |
| `count`  | `System.Nullable<int>`                                  | -                                                                                 |
| `skip`   | `System.Nullable<int>`                                  | -                                                                                 |

#### Returns

Type: `System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>>`

#### Type Parameters

* `TKey` -
* `TResult` -

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ReferenceEquals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool ReferenceEquals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ToString <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual string ToString()
```

#### Returns

Type: `string?`
