我正在使用存储过程从数据库中检索数据。此存储过程有多个结果集。 我们正在使用流利的api。在存储库方法中,我调用存储过程如下
@-webkit-keyframes example {
0% {background-image: url(https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png);}
25% {background-image: url(https://s-media-cache-ak0.pinimg.com/736x/9b/a2/57/9ba25796112cad616be27e473ae1e149.jpg);}
50% {background-image: url(https://s-media-cache-ak0.pinimg.com/736x/ce/5f/53/ce5f53437e291c48705428721406985c.jpg);}
100% {background-image: url(http://static.zikvid.com/crop/-/480/uploads/apps/games/560c672ea57e1f2dead096834d82a1db.jpg);}
}
以下是存储过程。但我没有得到预期的结果。 请任何人帮忙。
public virtual IEnumerable<T> GetWithRawSql(string query, params object[] parameters)
{
return DbContext.Database.SqlQuery<T>(query, parameters).ToList();
}
END