這是確保字段具有數據庫有效值的好方法嗎?我如何驗證分類字段?
internal class Customer
{
private string _CustomerId;
internal string CustomerId
{
get
{
return (_CustomerId==null?string.Empty:(_CustomerId.Length>20?_CustomerId.Substring(0,20):_CustomerId));
}
set
{
_CustomerId = value;
}
}}
問候斯文
你能提供更多關於你正在使用的細節嗎?這是什麼技術。你使用哪種數據庫技術,以及你如何與它進行交互?這是Web/Windows/WPF /類庫嗎? – 2010-03-09 12:05:27
對不起 它在一個classlibray中。我正在爲一個正在同步2個數據庫的應用程序構建一個庫。我的問題是,他們允許不同長度的表中的字段。 檢查null是因爲在提供空值時向sql查詢添加參數時出現錯誤。 – Zwempha 2010-03-09 12:12:45