You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/c-sharp/index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -223,9 +223,9 @@ However:
223
223
224
224
# Tables
225
225
226
-
Tables are declared using the [`[SpacetimeDB.Table]` attribute](#table-attribute).
226
+
Tables are declared using the `[SpacetimeDB.Table]` attribute.
227
227
228
-
This macro is applied to a C# `partial class` or `partial struct` with named fields. (The `partial` modifier is required to allow code generation to add methods.) All of the fields of the table must be marked with [`[SpacetimeDB.Type]`](#type-attribute).
228
+
This macro is applied to a C# `partial class` or `partial struct` with named fields. (The `partial` modifier is required to allow code generation to add methods.) All of the fields of the table must be marked with [`[SpacetimeDB.Type]`](#attribute-spacetimedbtype).
229
229
230
230
The resulting type is used to store rows of the table. It's a normal class (or struct). Row values are not special -- operations on row types do not, by themselves, modify the table. Instead, a [`ReducerContext`](#class-reducercontext) is needed to get a handle to the table.
0 commit comments