public string Build <T>() where T : new()
        {
            var tableName = TableAttribute.GetTableNameWithQuotes <T>();

            return(Build(tableName));
        }
Example #2
0
 internal void SetTable <T>() where T : new()
 {
     Table = TableAttribute.GetTableNameWithQuotes <T>();
 }