Frapid.Mapper.Sql.From C# (CSharp) Method

From() public method

public From ( ) : Sql
return Sql
        public Sql From(params object[] tables)
        {
            return this.Append(new Sql("FROM " + string.Join(", ", (from x in tables select x.ToString()).ToArray())));
        }