public void ToQuery_Parameters_002() { var target = new SQLinqInsertResult() { Table = "test", Fields = new Dictionary <string, string> { { "test", "test" } }, Parameters = null }; target.ToQuery(); }
public void ToQuery_Fields_002() { var target = new SQLinqInsertResult() { Table = "test", Fields = null, Parameters = new Dictionary <string, object> { { "test", 1 } } }; target.ToQuery(); }
public void ToQuery_Table_001() { var target = new SQLinqInsertResult() { Table = string.Empty, Fields = new Dictionary <string, string> { { "test", "test" } }, Parameters = new Dictionary <string, object> { { "test", 1 } } }; target.ToQuery(); }