SubSonic-3.0-Templates
SubSonic-3.0-Templates copied to clipboard
sqlite t4 generation fails on table with compound key
http://stackoverflow.com/questions/1831577/subsonic-3-sqlite-t4-generation-fails-on-compound-key
Make the key name an array everywhere?
public string[] KeyName()
{
...
}
public Column[] PK{
get{
...
}
}
Or put a band-aid on it like this:
public Column PK{
get{
return this.Columns.FirstOrDefault(x=>x.IsPK) ?? this.Columns[0];
}
}