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

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

借用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. [BZOJ]3737 [Pa2013]Euler

    从这个FB开始写博客啦. 也不知道会坚持多久…… = =似乎要加一句转载请注明出处 http://www.cnblogs.com/DancingOnTheTree/p/4026076.html htt ...

  2. Struts2+Spring4+Hibernate4整合超详细教程

    Struts2.Spring4.Hibernate4整合 超详细教程 Struts2.Spring4.Hibernate4整合实例-下载 项目目的: 整合使用最新版本的三大框架(即Struts2.Sp ...

  3. 【结构型】Facade模式

    外观模式主要意图是为子系统提供一个统一的接口,从而使用用户对子系统的直接依赖中,解耦合出来.Facade主要是通过为子系统统一封装个入口一样,原先用户对子系统的接口.类等都是直接访问,现在要通过Fac ...

  4. SQLite3简单入门及C++ API

    转载请注明出处:http://www.cnblogs.com/StartoverX/p/4660487.html 项目用到SQLite3,简单记录一下. MySQL不同,SQLite3的数据库基于文件 ...

  5. Linux_install jdk

    Linux安装JDK步骤 1.先从网上下载jdk(jdk-7u1-linux-i586.rpm),下载地址:http://www.oracle.com/technetwork/java/javase/ ...

  6. ImageView加ImageSwitch制作图片浏览器

    Main /** 图片浏览器*/public class MainActivity extends Activity implements ViewFactory{private Gallery ga ...

  7. 转:BZERO()等的区别

    BZERO()等的区别 bzero  原型: extern void bzero(void *s, int n); 用法: #include <string.h> 功能:置字节字符串s的前 ...

  8. window.onscroll

    http://www.w3help.org/zh-cn/causes/SD9013 1.各浏览器对 document.document.body.document.documentElement 对象 ...

  9. uva 10012

    题目意思:  给定m个圆的半径,现在要求找到一个矩形使得每一个球都以地面相切,要求输出最小的矩阵的长度 #include <iostream> #include <algorithm ...

  10. 【转】如何在 Android 程序中禁止屏幕旋转和重启Activity

    原文网址:http://www.cnblogs.com/bluestorm/p/3665890.html 禁止屏幕随手机旋转变化 有时候我们希望让一个程序的界面始终保持在一个方向,不随手机方向旋转而变 ...