Beispiel #1
0
        public static string SqlServerName(Type modelType)
        {
            DbObject obj = FromType(modelType);

            obj.SquareBraces = true;
            return(obj.ToString());
        }
Beispiel #2
0
 private string SelectInto(DbObject sourceObject, string intoTable)
 {
     return($"SELECT * INTO {intoTable} FROM {sourceObject.ToString()}");
 }