CRUD operations for inherited objects
Being able to CRUD operations for inherited objects. It's would be cool!
Adding OrmLite support (full CRUD) for object like this:
[Alias("base_table")]
public class BaseObject
{
[AutoIncrement]
[Alias("_id")]
public int Id { get; set; }
[Alias("_name")]
[StringLength(250)]
public string Name { get; set; }
}
[Alias("apply_table")]
public class ApplyObject : BaseObject
{
[Alias("someproperty1")]
[StringLength(250)]
public string SomeProperty1 { get; set; }
}
6
votes

-
Oleg Nadymov commented
Based on my issue: https://github.com/ServiceStack/Issues/issues/268