第一篇博客,还望各位大神勿喷

小弟在此代码奉上........

借用NorthWind数据库,实现一个商品展示的小功能。上代码:

添加对Linq的引用

 using System.Data.Linq;//添加对Linq的引用
using System.Data.Linq.Mapping;//配置对象和映射关系的命名空间

由于图简单,所以写了很少的字段,继续代码

    [Table(Name = "Products")]
public class Product
{
[Column(Name = "ProductID", DbType = "int identity(1,1) not null", IsPrimaryKey = true, IsDbGenerated = true, AutoSync = AutoSync.OnInsert, CanBeNull = true)]
public int ProductID { get; set; }
[Column(Name = "ProductName", DbType = "nvarchar(40) not null")]
public string ProductName { get; set; }
[Column(Name = "CategoryID", DbType = "int", CanBeNull = true)]
public int CategoryID { get; set; }
[Column(Name = "UnitPrice", DbType = "money")]
public decimal? Price { get; set; }
}
     [Table(Name = "Categories")]
public class Categoty
{
[Column(Name = "CategoryID", DbType = "int identity(1,1) not null", IsPrimaryKey = true, IsDbGenerated = true, CanBeNull = true, AutoSync = AutoSync.OnInsert)]
public int ID { get; set; }
[Column(Name = "CategoryName", DbType = "nvarchar(15) not null")]
public string CategoryName { get; set; }
[Column(Name = "Description", DbType = "ntext null")]
public string Description { get; set; } private EntitySet<Products> _products;
[Association(Name = "C_P", IsForeignKey = false, OtherKey = "CategoryID", ThisKey = "ID", Storage = "_products")]
public IList<Products> Products
{
get { return _products; } //上级接受下级参数,直接返回,上级:Category 下级:Product
set { _products.Assign(value); }//下级接受上级参数,使用Assign方法进行向上转换
}
}

上面分别是两个类:商品类Product与商品类别Category,下面继续创建上下文对象

  public class NorthwindDBContext : DataContext
{
private static readonly string conn = ConfigurationManager.ConnectionStrings["Myconn"].ConnectionString;//数据库的连接 public NorthwindDBContext()
: base(conn) { } public NorthwindDBContext(string connection)
: base(connection) { } public Table<Categoty> Category; public Table<Products> Products;
}

接下来就是展示页面了,创建一个aspx页面吧,扔两个控件上去

 <body>
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="DropDownListCategory" runat="server">
</asp:DropDownList>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</div>
</form>
</body>

页面现在也有了,后台代码:

 public partial class ProductsList : System.Web.UI.Page
{
Model.NorthwindDBContext db = new Model.NorthwindDBContext();
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
var query = db.Products.Count();
BandCategory();
}
} private void BandCategory()
{ var allCate = from c in db.Catrgorys select c;
this.DropDownListCategory.DataValueField = "ID";
this.DropDownListCategory.DataTextField = "Name";
this.DropDownListCategory.DataSource = allCate;
this.DropDownListCategory.DataBind();
} protected void Button1_Click(object sender, EventArgs e)
{
BandProduct();
} private void BandProduct()
{ //生成日志文件,方便程序出错查看生成的SQL语句
db.Log = new StreamWriter(Server.MapPath("~/log.txt"), true);
int cid = int.Parse(this.DropDownListCategory.SelectedValue);
List<Model.Product> lst = db.Products.ToList();
var Products = db.Products.Where(x => x.CategoryID == cid);
//拿到类别对象
//var cate = db.Category.Where(x => x.CategoryID == cid).First();
this.GridView1.DataSource = Products;//cate.Product;两种方法都行
this.GridView1.DataBind();
db.Log.Flush();
db.Log.Close(); }

最后效果:

表示刚工作学生路过,大神勿喷...以后会陆续分享一些工作心得的

回顾:Linq To SQL语法 - 实体类的更多相关文章

  1. LINQ to SQL 建立实体类

    使用LINQ to SQL时,需要首先建立用于映射数据库对象的模型,也就是实体类.在运行时,LINQ to SQL 根据LINQ表达式或查询运算符生成SQL语句,发送到数据库进行操作.数据库返回后,L ...

  2. 步步学LINQ to SQL:为实体类添加关系【转】

    [IT168 专稿]本文详细为你阐述了如何在你的应用程序中实现LINQ to SQL.附件的示例程序包括了这里探讨的所有代码,还提供了一个简单的WPF图形界面程序来显示通过数据绑定返回的结果集. 第一 ...

  3. LINQ to SQL 建立实体类 (转)

    http://www.cnblogs.com/DebugLZQ/archive/2012/11/14/2770449.html 使用LINQ to SQL时,需要首先建立用于映射数据库对象的模型,也就 ...

  4. Linq to SQL 语法查询(链接查询,子查询 & in操作 & join,分组统计等)

    Linq to SQL 语法查询(链接查询,子查询 & in操作 & join,分组统计等) 子查询 描述:查询订单数超过5的顾客信息 查询句法: var 子查询 = from c i ...

  5. FreeSql (二十四)Linq To Sql 语法使用介绍

    原本不支持 IQueryable 主要出于使用习惯的考虑,如果继承 IQueryable,编写代码的智能总会提示出现一堆你不想使用的方法(对不起,我有强迫症),IQueryable 自身提供了一堆没法 ...

  6. [转]LINQ To SQL 语法及实例大全

    转载自:http://blog.csdn.net/pan_junbiao/article/details/7015633 LINQ to SQL语句(1)之Where Where操作 适用场景:实现过 ...

  7. .net 根据匿名类生成实体类,根据datatable生成实体类,根据sql生成实体类

    在开发中可能会遇到这几种情况 1.EF或LINQ查询出来的匿名对象在其它地方调用不方便,又懒的手动建实体类 2.通过datatable反射实体需要先建一个类 ,头痛 3.通过SQL语句返回的实体也需要 ...

  8. LINQ To SQL 语法及实例大全

    http://blog.csdn.net/pan_junbiao/article/details/7015633 http://blog.csdn.net/pan_junbiao/article/de ...

  9. Linq to sql语法

    LINQ to SQL语句(1)之Where Where操作 适用场景:实现过滤,查询等功能. 说明:与SQL命令中的Where作用相似,都是起到范围限定也就是过滤作用的,而判断条件就是它后面所接的子 ...

随机推荐

  1. Leetcode 371: Sum of Two Integers(使用位运算实现)

    题目是:Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. ...

  2. webApi项目中的问题

    1.场景:客户端调用API获取所有品牌列表,使用redis存储,第一次是获取全部,之后会增量获取,通过lasttime参数 出现的问题:redis连接超时,网络流量太大 原因:这个借口没做本地缓存,每 ...

  3. nginx_笔记分享_配置篇

    参考http://www.howtocn.org/nginx:directiveindexhttp://blog.s135.com/ nginx 配置文档为 nginx.conf 比如我的配置文档 / ...

  4. phpcms v9二次开发之模型类的应用(1)

    在<phpcms二次开发之模型类model.class.php>中讲到了模型类的建立方法,接下来我讲一下模型类的应用.      前段时间我基于phpcms v9开发了一个足球网.足球网是 ...

  5. PHP判断远程图片或文件是否存在

    PHP判断远程图片是否存在,此方法同样适用于判断远程文件是否存在,这是一种既然有效率且又准确的方法,建议采用此方法,以往使用get_headers()方法判断都是有问题的: function chec ...

  6. Python3 如何优雅地使用正则表达式(详解三)

    模块级别的函数 使用正则表达式也并非一定要创建模式对象,然后调用它的匹配方法.因为,re 模块同时还提供了一些全局函数,例如 match(),search(),findall(),sub() 等等.这 ...

  7. C++是怎么实现多态性的

    C++是怎么实现多态性的,C++中多态实现的原理, 当一个类中有虚函数时,系统会为该类构造一个虚函数表vtable,他是一个指针数组,存放每个虚函数的入口地址,编译器还会在此类中隐含插入一个指针vpt ...

  8. pdf转图片

    public class FileUtil { public static void main(String[] args) { try { System.out.println(System.cur ...

  9. JS--图片轮播效果

    搞了很长时间才弄清楚图片轮播效果的原理,理解各个事件发生的原因,浪费了这么长的时间,只怪自己的知识太过于薄弱.现将代码写下,供大家参看,如有不妥之处还望指出,大家一起学习. 功能: 1.点击左右两边的 ...

  10. [SQL注入3]from_sqli_to_shell_II

    [SQL注入1]这关学习盲注 ,这篇还有些东西没理透,后面搞明白了再修改. http://www.pentesterlab.com/exercises/from_sqli_to_shell_II/ 准 ...