Hi James,
I just don't understand why it fails. Could, just for tests, remove some
columns until it works, and try to isolate the column that causes problem?

Thanks for help,
Pascal.

jabber/gtalk: [EMAIL PROTECTED]
msn: [EMAIL PROTECTED]



On Fri, Nov 28, 2008 at 09:32, Jimbo1982 <[EMAIL PROTECTED]> wrote:

>
> Hope this is what you mean,
>
> James
>
> [Table(Name = "WMSADH.AISLE")]
> public partial class Aisle : INotifyPropertyChanged
> {
>    #region INotifyPropertyChanged handling
>
>    public event PropertyChangedEventHandler PropertyChanged;
>
>    protected virtual void OnPropertyChanged(string propertyName)
>    {
>        if (PropertyChanged != null)
>        {
>            PropertyChanged(this, new PropertyChangedEventArgs
> (propertyName));
>        }
>    }
>
>    #endregion
>
>    #region string AisleID
>
>    private string _aisleID;
>    [DebuggerNonUserCode]
>    [Column(Storage = "_aisleID", Name = "AISLE_ID", DbType =
> "VARCHAR2", IsPrimaryKey = true, CanBeNull = false)]
>    public string AisleID
>    {
>        get
>        {
>            return _aisleID;
>        }
>        set
>        {
>            if (value != _aisleID)
>            {
>                _aisleID = value;
>                OnPropertyChanged("AisleID");
>            }
>        }
>    }
>
>    #endregion
>
>    #region decimal? RelationalXCooRd
>
>    private decimal? _relationalXcOoRd;
>    [DebuggerNonUserCode]
>    [Column(Storage = "_relationalXcOoRd", Name =
> "RELATIONAL_X_COORD", DbType = "NUMBER")]
>    public decimal? RelationalXCooRd
>    {
>        get
>        {
>            return _relationalXcOoRd;
>        }
>        set
>        {
>            if (value != _relationalXcOoRd)
>            {
>                _relationalXcOoRd = value;
>                OnPropertyChanged("RelationalXCooRd");
>            }
>        }
>    }
>
>    #endregion
>
>    #region decimal? RelationalYCooRd
>
>    private decimal? _relationalYcOoRd;
>    [DebuggerNonUserCode]
>    [Column(Storage = "_relationalYcOoRd", Name =
> "RELATIONAL_Y_COORD", DbType = "NUMBER")]
>    public decimal? RelationalYCooRd
>    {
>        get
>        {
>            return _relationalYcOoRd;
>        }
>        set
>        {
>            if (value != _relationalYcOoRd)
>            {
>                _relationalYcOoRd = value;
>                OnPropertyChanged("RelationalYCooRd");
>            }
>        }
>    }
>
>    #endregion
>
>    #region string TempRegime
>
>    private string _tempRegime;
>    [DebuggerNonUserCode]
>    [Column(Storage = "_tempRegime", Name = "TEMP_REGIME", DbType =
> "VARCHAR2")]
>    public string TempRegime
>    {
>        get
>        {
>            return _tempRegime;
>        }
>        set
>        {
>            if (value != _tempRegime)
>            {
>                _tempRegime = value;
>                OnPropertyChanged("TempRegime");
>            }
>        }
>    }
>
>    #endregion
>
>    #region ctor
>
>    public Aisle()
>    {
>    }
>
>    #endregion
>
> }
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"DbLinq" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/dblinq?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to