LINQ to SQL 第三集 - 如何取得 產品名稱長度 小於 10 字元的資料
筆者陸續介紹一些字串處理的使用方法
如何取得 產品名稱長度 小於 10 字元的資料,程式碼如下:
using System;
using System.Linq;
using System.Windows.Forms;
namespace LinqToSql
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
NorthwindDataContext db = new NorthwindDataContext();
var products = from p in db.Products
where p.ProductName.Length < 10
select p;
dataGridView1.DataSource = products.ToList();
}
}
}
即會將『產品名稱』小於 10 的資料列出來:
Enjoy.
Comments
- Anonymous
September 24, 2008
The comment has been removed