Method WithWorld
WithWorld(string)
Get all records matching a world name.
Declaration
[ExcludeFromBurstCompatTesting("LINQ")]
public static EntitiesJournaling.RecordView[] WithWorld(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The world name. |
Returns
| Type | Description |
|---|---|
| RecordView[] | Array of EntitiesJournaling.RecordView. |
Remarks
Throws InvalidOperationException if records are currently locked for write.
WithWorld(ulong)
Get all records matching a world sequence number.
Declaration
[ExcludeFromBurstCompatTesting("LINQ")]
public static EntitiesJournaling.RecordView[] WithWorld(ulong sequenceNumber)
Parameters
| Type | Name | Description |
|---|---|---|
| ulong | sequenceNumber |
Returns
| Type | Description |
|---|---|
| RecordView[] | Array of EntitiesJournaling.RecordView. |
Remarks
Throws InvalidOperationException if records are currently locked for write.
WithWorld(World)
Get all records matching an existing world.
Declaration
[ExcludeFromBurstCompatTesting("LINQ")]
public static EntitiesJournaling.RecordView[] WithWorld(World world)
Parameters
| Type | Name | Description |
|---|---|---|
| World | world |
Returns
| Type | Description |
|---|---|
| RecordView[] | Array of EntitiesJournaling.RecordView. |
Remarks
Throws InvalidOperationException if records are currently locked for write.