您好,登錄后才能下訂單哦!
LINQ to SQL刪除實現的示例分析,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
在實現LINQ to SQL刪除時可以使用Lambda Expression批量刪除數據那么在解析表達式過程中生成Where Condition會有大量的代碼生成。
根據LINQ to Sql原有的設計,解析Query得到DbCommand應該是SqlProvider干的事,只是現在這個SqlProvider只從IReaderProvider出(事實上MS也沒設計個IUpdateProvider或者IDeleteProvider來著),所以也只對SELECT感冒。搞的咱們只能在DataContext里自力更生了。
LINQ to SQL刪除實現的實例:
不過既然已經有了可以生成SELECT的IReaderProvider,稍微把SELECT語句改造一下不就能得到DELETE了嗎!基本思路:
public static int DeleteAll﹤TEntity﹥( this Table﹤TEntity﹥ table, Expression﹤Func﹤TEntity, bool﹥﹥ predicate) where TEntity : class { IQueryable query = table.Where(predicate); DbCommand com = dc.GetCommand(query); //TODO:改造sql語句 return com.ExecuteNonQuery(); } }
這里直接拿直接拿where生成的query來GetCommand,得到的sql語句大致如下:
SELECT fields... FROM tableName AS TableAlias WHERE Condition
LINQ to SQL刪除的目標:
DELETE FROM tableName WHERE Condition
可見關鍵是得到tableName,用正則是***。不過這里還有一個缺陷就是只能用expression來做刪除不能用linq query,比如我想這樣:
var query = from item in context.Items where item.Name.StartsWith("XX") select item; context.DeleteAll(query);
看來要把DeleteAll放到DataContext里,不過這樣有風險,有可能會接受到無法轉換的SELECT語句,增加判斷必不可少。
LINQ to SQL刪除最終完成如下:
public static class DataContextEx { public static int DeleteAll( this DataContext dc, IQueryable query) { DbCommand com = dc.GetCommand(query); Regex reg = new Regex("^SELECT[\\s]*(?﹤Fields﹥.*) [\\s]*FROM[\\s]*(?﹤Table﹥.*)[\\s]*AS[\\s]* (?﹤TableAlias﹥.*)[\\s]*WHERE[\\s]*(?﹤Condition﹥.*)", RegexOptions.IgnoreCase); Match match = reg.Match(com.CommandText); if (!match.Success) throw new ArgumentException( "Cannot delete this type of collection"); string table = match.Groups["Table"].Value.Trim(); string tableAlias = match.Groups["TableAlias"].Value.Trim(); string condition = match.Groups["Condition"]. Value.Trim().Replace(tableAlias, table); com.CommandText = string.Format( "DELETE FROM {0} WHERE {1}", table, condition); if (com.Connection.State != System.Data.ConnectionState.Open) com.Connection.Open(); return com.ExecuteNonQuery(); } public static int DeleteAll﹤TEntity﹥( this Table﹤TEntity﹥ table, Expression﹤Func﹤TEntity, bool﹥﹥ predicate) where TEntity : class { IQueryable query = table.Where(predicate); return table.Context.DeleteAll(query); } }
注:reg表達式取自MSDN Forum
關于LINQ to SQL刪除實現的示例分析問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。