5
Reply

my webservice are not fetch data form database with linq

Gaurav Raj

Gaurav Raj

Jun 21 2017 2:01 AM
219
This is my webservice code
[WebMethod]
public Home getHome(int user) {
Home h = new Home();
Connection cs = new Connection();
var q=cs.da.HomeProcedure(user).ToList();
return h;
}
}
this is my home class 
public class Home
{
public int BlogId { get; set; }
public string BlogPic { get; set; }
public string Title { get; set; }
public string Blogpic { get; set; }
public string Date1 { get; set; }
public string Time1 { get; set; }
public string Blogby { get; set; }
public string UserPic{get; set; }
public string TotalLike { get; set; }
public string TotalComment { get; set; }
public string LIKED { get; set; }
}
 Output is
<Home xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/">
<BlogId>0</BlogId>
</Home>
Please somebody help me 

Answers (5)