標題:
2011 03 12 (資料庫)
[打印本頁]
作者:
buy
時間:
2011-3-12 11:35
標題:
2011 03 12 (資料庫)
本帖最後由 buy 於 2011-3-12 12:00 編輯
public static class ExtensionMethods
{
public static TResult NextId<TSource, TResult>(this ObjectSet<TSource> table, Expression<Func<TSource, TResult>> selector)
where TSource : class
{
TResult lastId = table.Any() ? table.Max(selector) : default(TResult);
if (lastId is int)
{
lastId = (TResult)(object)(((int)(object)lastId) + 1);
}
return lastId;
}
}
複製代碼
作者:
buy
時間:
2011-3-12 11:50
1. 建立資料庫 名稱為TestDB
2. 將欄位建立好,id;UserID;uesrPW (資料型態為int, nvarchar(100), nvarchar(100))
3. 加入ADO.NET實體資料模型
4. 新增一個程式碼檔案,將老師的程式碼複製過去
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2