public struct TableReference : IEquatable<TableReference>
Remarks
A table reference identifies a table collection without holding a direct object reference, which keeps it lightweight and serializable. It stores either a collection name or a collection GUID; TableReference.ReferenceType reports which form is in use, and TableReference.IsEmpty is
true
when neither is set. Assign one implicitly from a string to reference by name, or call TableReference.FromGuid to reference by GUID. Name references are convenient in code, while GUID references keep resolving after a collection is renamed. Pair a table reference with a TableEntryReference to address a single entry, and resolve either against a ResourceDatabase or a ResourceTable.