.net core webapi 怎么使用ef来调用sql函数
ef混用dapper吧
db.Database.GetDbConnection().ExecuteScalar<string>("");
多谢多谢,可以了
db.Database.ExecuteSqlCommand(sqlString)
没有ExecuteSqlCommand这个方法诶
@我去帮你买西瓜: QLLB_SWXContext _Context = new QLLB_SWXContext();
string sql = "select * from Article where CategoryID=1;";
List<Article> list = _Context.Article.FromSql(sql).ToList();
@不知道风往哪儿吹: 这个函数我只返回一个字符串,不需要返回到类里的方法有吗
context.Blogs.FromSqlRaw("SELECT * FROM dbo.Blogs")
https://docs.microsoft.com/en-us/ef/core/querying/raw-sql
来自微软官方文档 https://docs.microsoft.com/en-us/ef/core/querying/raw-sql