返回列表 發帖

2011 03 12 (資料庫)

本帖最後由 buy 於 2011-3-12 12:00 編輯
  1. public static class ExtensionMethods
  2.     {
  3.         public static TResult NextId<TSource, TResult>(this ObjectSet<TSource> table, Expression<Func<TSource, TResult>> selector)
  4.             where TSource : class
  5.         {
  6.             TResult lastId = table.Any() ? table.Max(selector) : default(TResult);

  7.             if (lastId is int)
  8.             {
  9.                 lastId = (TResult)(object)(((int)(object)lastId) + 1);
  10.             }
  11.             return lastId;
  12.         }
  13.     }
複製代碼
Mai  買大誠 [E-Mail : mainword@dlinfo.tw, mainword@gmail.com] 手機 : 0911-116194
Sun Certified Java Programmer

DL Info 鼎侖資訊 [886-7-969-0998] 高雄市苓雅區光華一路206號6樓之2

1. 建立資料庫 名稱為TestDB
2. 將欄位建立好,id;UserID;uesrPW (資料型態為int, nvarchar(100), nvarchar(100))
3. 加入ADO.NET實體資料模型
4. 新增一個程式碼檔案,將老師的程式碼複製過去
Mai  買大誠 [E-Mail : mainword@dlinfo.tw, mainword@gmail.com] 手機 : 0911-116194
Sun Certified Java Programmer

DL Info 鼎侖資訊 [886-7-969-0998] 高雄市苓雅區光華一路206號6樓之2

TOP

返回列表