Guest User

Untitled

a guest
Jun 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. DbConnection storeConnection = entityConnection.StoreConnection;
  2. DbCommand command = storeConnection.CreateCommand();
  3. command.CommandText = "sp_GetMyComplexData";
  4. command.CommandType = CommandType.StoredProcedure;
  5.  
  6. DbDataReader reader = command.ExecuteReader();
Add Comment
Please, Sign In to add comment