使用linQ从数据库中检索图像的Web服务

时间:2014-05-07 11:05:37

标签: c# ajax linq

我正在编写此代码,我想创建一个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>();

}

1 个答案:

答案 0 :(得分:0)

您想从Image获取BabyProfiles属性获取BabyProfile属性吗? - (我想这是一个var query = (from s in bc.BabyProfiles select s.Image).ToList(); 列表)

如果你真的想要它,那就试试这个:

{{1}}

无论如何,你的问题还不清楚,因为我不能100%肯定你要求我们帮助你。