我是新手C# Linq
。我正在运行一个安静的服务,为此我需要实现一个函数,然后使用该函数我想调用我Webservice
的WebClient
,
我也想使用数据库Student,请告诉我一些建议或函数代码,以便我可以从 SQL 中获取数据,
要么我必须LinqtoSQl
在我的服务项目中添加一个文件,要么我可以使用 Just a Function 来实现我的目标。
请帮助,
我的学生表有以下列,
ID
FirstName
LastName
Email
DOB
Religion
Studentof
ContactNumber
Address
AdmissionDate
因为简单:您可以为以下 SQL 查询编写代码,
选择 * from Student where FirstName="Myname";
[OperationContract]
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "linq/?id={id}")]
string linq(string id);
public string linq(string id)
{
return "This function should return Linq to SQL Result" + id;
}