# INamedTransactionalStateStorageFactory Methods

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.transactions/orleans.transactions.abstractions.inamedtransactionalstatestoragefactory/)

## Create(string, string) {#create-1-string-string-ded86378}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.transactions/orleans.transactions.abstractions.inamedtransactionalstatestoragefactory/methods/create-1-string-string-ded86378/)

```csharp
public abstract ITransactionalStateStorage<TState> Create<TState>(string storageName, string stateName)
```

Create an ITransactionalStateStorage by name.

### Parameters

- `storageName` (`string`): Name of transaction state storage to create.
- `stateName` (`string`): Name of transaction state.

### Returns

ITransactionalStateStorage, null if not found.
