天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

LINQ To DataSet

LINQ to DataSet主要是提供對(duì)離線數(shù)據(jù)的支持,只有在填充DataSet之后,我們才能使用LINQ to DataSet來查詢數(shù)據(jù)。其功能主要是通過System.Data.DataRowExtions和System.Data.DataTableExtensions兩個(gè)靜態(tài)類中的擴(kuò)展方法來公開的。LINQ to DataSet是LINQ to ADO.NET中的一部分,但這部分所占比重非常小,內(nèi)容也比較少。下面就讓我們首先來看看DataTableExtensions中的擴(kuò)展方法:

public static EnumerableRowCollection<DataRow> AsEnumerable(this DataTable source)
----------------------------------------------------------------------------------------------------
public static DataView AsDataView(this DataTable table)
public static DataView AsDataView<T>(this EnumerableRowCollection<T> source) where T : DataRow
-----------------------------------------------------------------
public static DataTable CopyToDataTable<T>(this IEnumerable<T> source) where T : DataRow
public static void CopyToDataTable<T>(this IEnumerable<T> source,DataTable table,LoadOption options) where T : DataRow
public static void CopyToDataTable<T>(this IEnumerable<T> source,DataTable table,LoadOption options,FillErrorEventHandler errorHandler) where T : DataRow

下面,我們就來看看一個(gè)使用LINQ to DataSet的實(shí)例,這個(gè)例子主要描述了一下上面擴(kuò)展方法的用法,同時(shí)給出了部分注意的事項(xiàng):

public static class LINQToDataSet
{
    
public class Student
    
{
        
public int Id;
        
public string Name;
    }

    
public static DataTable GetDataTable(Student[] students)
    
{
        DataTable table 
= new DataTable();
        table.Columns.Add(
"Id"typeof(Int32));
        table.Columns.Add(
"Name"typeof(string));
        
foreach (Student student in students)
        
{
            table.Rows.Add(student.Id, student.Name);
        }

        
return (table);
    }

    
public static void PrintStudentTable(DataTable dt)
    
{
        PrintStudentTable(dt.AsEnumerable());
    }

    
public static void PrintStudentTable(IEnumerable<DataRow> dt)
    
{
        Console.WriteLine(
"================================================================");
        
try
        
{
            
foreach (DataRow dataRow in dt.AsEnumerable())
            
{
                Console.WriteLine(
"Student Id = {0} :original {1}:current {2}",
dataRow.Field
<int>("Id"),
dataRow.Field
<string>("Name", DataRowVersion.Original),
dataRow.Field
<string>("Name", DataRowVersion.Current));
            }

        }

        
catch (Exception e)
        
{
            Console.WriteLine(
"Exception:" + e.Message);
        }

        Console.WriteLine(
"================================================================");
    }

    
public static void Test()
    
{
        Student[] students 
= new Student { Id = 1, Name = "Lazy Bee" },
                               
new Student { Id = 7, Name = "Flying Wind" },
                               
new Student { Id = 13, Name = "PiPi Zhu" },
                               
new Student { Id = 72, Name = "Chong Chong" }}
;
        DataTable originalTable 
= GetDataTable(students);
        
//我們?cè)噲D訪問DataTable中數(shù)據(jù)行的Orginal版本,由于此時(shí)還沒有建立原始版本,
        
//所以將導(dǎo)致異常
        Console.WriteLine("We try to get access to original version, so we will get the exception.:");
        PrintStudentTable(originalTable);
        
//我們使用CopyToDataTable來建立DataTable中數(shù)據(jù)行的Orginal版本
        Console.WriteLine("We will use CopyToDataTable to build original version.");
        DataTable newTable 
= originalTable.AsEnumerable().CopyToDataTable();
        PrintStudentTable(newTable);
        
//使用SetField來更新
        Console.WriteLine("After call SetField to change name.");
        (from s 
in newTable.AsEnumerable()
         
where s.Field<string>("Name"== "PiPi Zhu"
         select s).Single
<DataRow>().SetField("Name""George Oscar Bluth");
        PrintStudentTable(newTable);
        
//使用SetField來設(shè)置null
        Console.WriteLine("After call SetField to change name to null.");
        (from s 
in newTable.AsEnumerable()
         
where s.Field<int>("Id"== 13
         select s).Single
<DataRow>().SetField<string>("Name"null);
        PrintStudentTable(newTable);
        
//使用CopyToDataTable來合并,由于我們沒有指定表的主鍵,
        
//所以只會(huì)簡(jiǎn)單的追加在目標(biāo)數(shù)據(jù)表的最后
        Console.WriteLine("After call CopyToDataTable.We will not get our expected result because we have not set primary key.");
        
//首先,我們調(diào)用AcceptChanges來建立Original版本,否則,避免顯示時(shí)拋出異常
        originalTable.AcceptChanges();
       newTable.AsEnumerable().CopyToDataTable(originalTable, LoadOption.OverwriteChanges);
        PrintStudentTable(originalTable);
        
//我們使用Distinct來去掉剛才重復(fù)的記錄,由于此時(shí)我們沒有使用DatarowComparer.Default
        
//所以我們將得不到我們想要的結(jié)果
        Console.WriteLine("After call Distinct.We will not get our expected result because we have not used DatarowComparer.Default comparer.");
        IEnumerable
<DataRow> distinctTable=originalTable.AsEnumerable().Distinct();
        PrintStudentTable(distinctTable);
        
//我們使用Distinct來去掉剛才重復(fù)的記錄,使用DatarowComparer.Default比較器
        
//所以我們將得到我們想要的結(jié)果
        Console.WriteLine("After call Distinct.this is what we want.");
       distinctTable
=originalTable.AsEnumerable().Distinct(DataRowComparer.Default);
        PrintStudentTable(distinctTable);
        
//我們先設(shè)置主鍵,然后再使用CopyToDataTable來合并
        Console.WriteLine("After call CopyToDataTable.this is what we want.");
        originalTable 
= GetDataTable(students);
        originalTable.PrimaryKey 
= new DataColumn[] { originalTable.Columns["Id"] }
        newTable.AsEnumerable().CopyToDataTable(originalTable, LoadOption.OverwriteChanges);
        PrintStudentTable(originalTable);     
    }

}


這個(gè)例子的輸出結(jié)果為:

We try to get access to original version, so we will get the exception.:
================================================================
Exception:There 
is no Original data to access.
================================================================
We will use CopyToDataTable to build original version.
================================================================
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original PiPi Zhu:current PiPi Zhu
Student Id 
= 72 :original Chong Chong:current Chong Chong
================================================================
After call SetField to change name.
================================================================
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original PiPi Zhu:current George Oscar Bluth
Student Id 
= 72 :original Chong Chong:current Chong Chong
================================================================
After call SetField to change name to 
null.
================================================================
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original PiPi Zhu:current
Student Id 
= 72 :original Chong Chong:current Chong Chong
================================================================
After call CopyToDataTable.We will not 
get our expected result because we have not set primary key.
================================================================
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original PiPi Zhu:current PiPi Zhu
Student Id 
= 72 :original Chong Chong:current Chong Chong
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original :current
Student Id 
= 72 :original Chong Chong:current Chong Chong
================================================================
After call Distinct.We will not 
get our expected result because we have not used DatarowComparer.Default comparer.
================================================================
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original PiPi Zhu:current PiPi Zhu
Student Id 
= 72 :original Chong Chong:current Chong Chong
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original :current
Student Id 
= 72 :original Chong Chong:current Chong Chong
================================================================
After call Distinct.
this is what we want.
================================================================
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original PiPi Zhu:current PiPi Zhu
Student Id 
= 72 :original Chong Chong:current Chong Chong
Student Id 
= 13 :original :current
================================================================
After call CopyToDataTable.
this is what we want.
================================================================
Student Id 
= 1 :original Lazy Bee:current Lazy Bee
Student Id 
= 7 :original Flying Wind:current Flying Wind
Student Id 
= 13 :original :current
Student Id 
= 72 :original Chong Chong:current Chong Chong
================================================================

it知識(shí)庫(kù)LINQ To DataSet,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 99国产在线视频 | 欧美14videosex性欧美成人 | 亚洲中文字幕乱码熟女在线 | 国产精品人成在线播放新网站 | 欧美乱妇日本无乱码特黄大片 | 西施打开双腿下面好紧 | 四虎国产精品永久免费入口 | 67194线在线精品观看 | 暖暖 视频 在线 观看 高清 | 老阿姨才是最有味的一区二区 | 小小水蜜桃免费影院 | 成人毛片免费在线观看 | 国产午夜AV无码无片久久96 | 古风H啪肉NP文 | 1a级毛片免费观看 | 国产精品俺来也在线观看 | 少妇精油按摩 | 2018久久视频在线视频观看 | 亚洲 欧美 国产 综合五月天 | 欧美成人性色生活18黑人 | 大陆老太交xxxxxhd在线 | 色小姐.com | 四虎影院网红美女 | 思思99热久久精品在线6 | 8x华人免费视频 | 精品亚洲国产熟女福利自在线 | 欧美人成在线观看ccc36 | 国产亚洲精品网站在线视频 | 欧美色妞AV重囗味视频 | 秋霞电影院兔费理论84MB | 无码日韩人妻精品久久蜜桃入口 | 秋霞电影网午夜鲁丝片 | 2019久久这里只精品热在线观看 | 日本护士性生活 | 伊人综合在线22 | 扒开老师粉嫩的泬10P | 少妇厨房愉情理9伦片视频 少妇被躁爽到高潮无码久久 | 在线高清电影理论片4399 | 国产伦精品一区二区三区精品 | 日韩 亚洲 欧美 中文 高清 | 成人免费视频在线观看 |