aws-samples / aws-sdk-unity-samples

This repository has samples that demonstrate various aspects of the AWS Mobile SDK for Unity, you can get the SDK source on Github (https://github.com/aws/aws-sdk-net)
Other
161 stars 107 forks source link

How to Load the table Dynamically #44

Open CLOUDFIRE91 opened 2 years ago

CLOUDFIRE91 commented 2 years ago

I am new to DynamoDB.I am using Unity 2019. I am loading the table (HighLevelTableExample.cs) through this method.

DynamoDBTable("mydynamodbtablename")] public class HighLevelTableExample : DynamoDbBaseExample { public string S_tablefieldset;

.... }

Actually i have to dynamically Load a table . That means

DynamoDBTabl(MyDesiredTable)]

Instead of hotcode the table name. When i pass the table name in arguments. The table should load . How can i do it.