2017年11月22日 星期三

LINQ 筆記

TAKE(取前幾項)、SKIP(跳過前幾項)
https://ithelp.ithome.com.tw/articles/10104729

2017年11月17日 星期五

MVC Attribute Data Annotation 驗證

https://dotblogs.com.tw/mrsunboss/2013/01/03/86688
https://dotblogs.com.tw/harry/2016/07/06/150115
https://stackoverflow.com/questions/6269320/manually-bind-jquery-validation-after-ajax-request

MVC 所有 try catch 放在同一個地方處理

http://www.huanlintalk.com/2013/01/aspnet-web-api-exception-filter.html

概念是new 一個 class 去繼承 exception,然後在app_start裡面config.filter 放進去

2017年11月16日 星期四

Oracle 取 Top 使用 Rownum

Oracle 沒有 Top 1 或是 Limit 語法,是使用 rownum 編號
使用方式如下,在Oracle中,rownum會比group by、order by更先執行,因此要用子查詢

select xxx from (select xxx from xxx order by xxx) where rownum<2

上面那句就是取 TOP 1

2017年11月6日 星期一

Razor 文章暫放

有些東西之後不想花太多時間找,就暫時放這邊吧

把字串用Html方式顯示
https://stackoverflow.com/questions/27284734/render-a-string-as-html-in-c-sharp-razor

Html Helper 擴充函式、TagBuilder 組出 img 的  html tag
http://www.itorian.com/2012/10/html-helper-for-image-htmlimage.html