コード例 #1
0
ファイル: Spry.cs プロジェクト: vigneshmsft/Spry
 public static InsertValue <dynamic> InsertInto(string tableName, string dbSchema = "dbo")
 {
     return(SpryInsert <dynamic> .Insert(tableName, dbSchema));
 }
コード例 #2
0
ファイル: Spry.cs プロジェクト: vigneshmsft/Spry
 public static InsertValue <TDto> InsertInto <TDto>(string tableName, string dbSchema = "dbo")
 {
     return(SpryInsert <TDto> .Insert(tableName, dbSchema));
 }