well i tried to Load value from Database using SubSonice Read method but it gave me an Error which is :-
but Actually There is Column Named superboss in Database and was Written Correctly
Reading Code
SuperBoss Property
SuperBoss string Field
The Column Named superboss inside Database
[Only registered and activated users can see links. Click Here To Register...]
whats wrong ? And what should i do to Fix this Problem i've Tried Alot
Regards
shadowman123
PHP Code:
ArgumentException was unhandled
There's no column called 'superboss' for this object
Parameter name: columnName
Reading Code
PHP Code:
mf.SuperBossVariable = monsters[x].SuperBoss;
PHP Code:
[XmlAttribute("SuperBoss")]
[Bindable(true)]
public uint SuperBoss
{
get { return GetColumnValue<uint>(Columns.SuperBoss); }
set { SetColumnValue(Columns.SuperBoss, value); }
}
PHP Code:
public static string SuperBoss = @"superboss";
PHP Code:
public static TableSchema.TableColumn superboss
{
get { return Schema.Columns[48]; }
}
[Only registered and activated users can see links. Click Here To Register...]
whats wrong ? And what should i do to Fix this Problem i've Tried Alot
Regards
shadowman123