日期:2014-05-20 浏览次数:21573 次
[Column(Storage="_AccountID", AutoSync=AutoSync.Always, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true, UpdateCheck=UpdateCheck.Never)]
public int AccountID
{
    get
    {
        return this._AccountID;
    }
}
public System.Data.Linq.Table<Account> Account
{
    get
    {
        return this.GetTable<Account>();
    }
}