Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/codegen/src/csharp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ impl Lang for Csharp<'_> {
indented_block(output, |output| {
writeln!(
output,
"protected override string RemoteTableName => \"{}\";",
"public override string RemoteTableName => \"{}\";",
table.name
);
writeln!(output);
Expand Down
2 changes: 1 addition & 1 deletion sdks/csharp/src/Table.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ internal class ParsedTableUpdate : IParsedTableUpdate
internal List<Row>? EventRows;
}

protected abstract string RemoteTableName { get; }
public abstract string RemoteTableName { get; }
string IRemoteTableHandle.RemoteTableName => RemoteTableName;

/// <summary>
Expand Down