用Entity Framework 连表查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Entity Framework 连表查询相关的知识,希望对你有一定的参考价值。
参考技术A public List<Article> Select()var result = from article in le.Article select article;
return result.ToList();
public Article SelectById(int id)
var result = (from article in le.Article
where article.id == id select article).Single();
return result;
public int Add(Article article)
le.Article.Add(article);
int count = le.SaveChanges();
return count;
public int Remove(Article article)
le.Article.Remove(article);
int count = le.SaveChanges();
return count;
public int Update(Article article)
le.Entry<Article>(article).State = System.Data.Entity.EntityState.Modified;
int count = le.SaveChanges();
return count;
LunTanEntities le = new LunTanEntities();
public List<Catelog> Select()
//return le.Catelog.Select(p => p).ToList();
var result = from catelog in le.Catelog select catelog;
return result.ToList();
public int Add(Article article)
return tanDAO.Add(article);
public List<Article> Select()
return tanDAO.Select();
public Article SelectById(int id)
return tanDAO.SelectById(id);
public List<Catelog> Select()
return dAO.Select();
<div>
<asp:HyperLink ID="HyperLink1" NavigateUrl="~/Add.aspx" runat="server">添加文章</asp:HyperLink>
<asp:GridView ID="GridView1" runat="server" DataSourceID="ObjectDataSource1"></asp:GridView>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetSelect" TypeName="BLL.ArCaService"></asp:ObjectDataSource>
</div>
csharp 使用Entity Framework和OracleParameters执行查询
以上是关于用Entity Framework 连表查询的主要内容,如果未能解决你的问题,请参考以下文章
《Entity Framework 6 Recipes》中文翻译系列 (14) -----第三章 查询之查询中设置默认值和存储过程返回多结果集 (转)
csharp 使用Entity Framework和OracleParameters执行查询
《Entity Framework 6 Recipes》中文翻译系列 (13) -----第三章 查询之使用Entity SQL