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

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

借用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. static和const关键字的作用

    static关键字至少有下列n个作用: (1)函数体内static变量的作用范围为该函数体,不同于auto变量,该变量的内存只被分配一次,因此其值在下次调用时仍维持上次的值: (2)在模块内的stat ...

  2. 使用 ADD-ON SDK 开发 基于 Html JQuery 和 CSS 的 firefox 插件入门教程1: 创建一个简单的 Add-on

    [本文转载自http://sixpoint.me/942/implementing-simple-addon/] 实现一个简单的插件 教程的这个部分带你使用 SDK 来实现, 运行并打包一个插件. 这 ...

  3. linux inode已满解决方法

    今天login server的一个网站,发现login后没有生成session.根据以往经验,一般是空间已满导致session文件生成失败. df -h Filesystem Size Used Av ...

  4. 将EmEditor加入到鼠标右键菜单

    在清理系统的时候,无意中将EmEditor的鼠标右键功能给清理掉了,在EmEditor的配置中又没有找到如何加入到鼠标右键菜单的方法,只好使用导入注册表功能了,以下的代码,拷贝到记事本中,保存为EmE ...

  5. 文件磁盘读写类CArchive类

    CArchive类的成员 数据成员 m_pDocument 指向被串行化的CDocument对象 构造函数 Carchive 创建一个Carhcive对象 Abort在不异常的情况下,关闭归档文件 C ...

  6. HttpHelper工具类

    /// <summary> /// 类说明:HttpHelper类,用来实现Http访问,Post或者Get方式的,直接访问,带Cookie的,带证书的等方式,可以设置代理 /// 重要提 ...

  7. nginx 中location和root

    nginx 中location和root,你确定真的明白他们关系? 2016-01-17 14:48 3774人阅读 评论(1) 收藏 举报  分类: linux(17)  版权声明:本文为博主原创文 ...

  8. Acdream a + b

    http://acdream.info/problem?pid=1007 两个 long long 相乘会超long long #include <cstdio> #include < ...

  9. C51库函数积累

    C51库函数积累: (1)_chkfloat_: 函数定义:unsigned char _chkfloat_ ( float val); /* number to check */ 函数功能:_chk ...

  10. hdu 2583 permutation 动态规划

    Problem Description Permutation plays a very important role in Combinatorics. For example ,1 2 3 4  ...