我正在编写此代码,我想创建一个Web服务来从数据库中检索图像..
并在ajax代码中使用此Web服务
任何帮助?
感谢
[WebMethod]
public List<BabyProfile> SelectPicOfBaby()
{
BabyCareeEntities bc = new BabyCareeEntities();
var query = (from s in bc.BabyProfiles
where s.Image
select s).ToList<BabyProfile>();
return query;
//var quary1 = (from s in nw.Employees
// where s.EmployeeID == 1
// select s).ToList<Employee>();
}
答案 0 :(得分:0)
您想从Image
获取BabyProfiles
属性获取BabyProfile
属性吗? - (我想这是一个var query = (from s in bc.BabyProfiles
select s.Image).ToList();
列表)
如果你真的想要它,那就试试这个:
{{1}}
无论如何,你的问题还不清楚,因为我不能100%肯定你要求我们帮助你。