这里是ASP.NET Data Access FAQ的第二部分: LINQ How can I implement a transaction in LINQ? A: You can use TransactionScope class in LINQ to implement a transaction. Its a new function in .NET Framework 2.0 to provide an implicit way to impl
这里是ASP.NET Data Access FAQ的第二部分:
LINQ
How can I implement a transaction in LINQ?
A: You can use TransactionScope class in LINQ to implement a transaction. It’s a new function in .NET Framework 2.0 to provide an implicit way to implement a transaction. You can use it in LINQ as shown below:
using (TransactionScope scope = new TransactionScope())
{
try
{
……….
ctx.SubmitChanges();
……….
ctx.SubmitChanges();
}
catch (Exception ex)
{
Response.Write("Error happens, Transaction class will automaticlly roll back!");
}
scope.Complete();
}
You need to reference the System.Transactions assembly and add the namespace ‘System.Transactions’. Also, you need to make sure the windows service-“Distributed Transaction Coordinator Service” is running.
Related link:
http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx
How can I use left join in LINQ.
A: You can use the keywords “join” and “into” to implement left join in LINQ. Please take a look at following example:
var sel = from u in
join p inon u.TagID equals p.TagID into UP
from p in UP.DefaultIfEmpty()
select new
{
UT = u.TagID,
UT1 = u.Text,
UT2 = p.Info
};
What’s the difference between List
A: You can return LINQ query result as type of both List
List
// Return List
ListUser> users = res.ToListUser>();
var ss = users.WhereUser>(p => p.UserInfos.ID != 3);
// Return IQueryable
IQueryableUser> users = res.AsQueryableUser>();
var ss = users.WhereUser>(p => p.UserInfos.ID != 3);
How to implement ‘Like’ operation in LINQ just like in SQL script?
A: If you want to implement the ‘Like’ function in LINQ as in SQL script, you can achieve this by following two methods.
First, you can use Contains, StartsWith, or EndsWith method, here is an example to demonstrate how to use them.
var dd = from p in ctx.Users
where p.email.Contains("xx") || p.userName.StartsWith("xx") || p.userName.EndsWith("xx")
select p;
Second, you can use SqlMethods class, it contains a method named ‘Like’ which has the same function with ‘Like’ in SQL script.
var dd = (from p in ctx.Users
where SqlMethods.Like(p.userName, "%Jiang%") && SqlMethods.Like(p.email,"%WWW%")
orderby p.accountID
select p).Take(10);
How to query a DataTable using LINQ?
A: LINQ can query the data source which implements interface IEnumerable. This means you need to first call AsEnumerable method on DataTable, and then you can use LINQ to query the data. Here’s a sample:
var nostr = from u in dt.AsEnumerable()
where u.FieldDecimal>("m").ToString().ToUpper().StartsWith("3")
select new
{
MONEY = u.FieldDecimal>("m"),
TIME = u.FieldDateTime>("t"),
EXT = "Extra Column"
};