Top "Ormlite-servicestack" questions

ServiceStack.

With OrmLite, is there a way to automatically update table schema when my POCO is modified?

Can OrmLite recognize differences between my POCO and my schema and automatically add (or remove) columns as necessary to force …

servicestack ormlite-servicestack
How to retrieve auto-incremented Id in ServiceStack OrmLite?

For a table that has an identity: [AutoIncrement] public int Id { get; set;} When inserting a new row into the …

sql-server servicestack ormlite-servicestack
ServiceStack / ORM Lite - Foreign Key Relationships

I have the following POCO: [Alias("Posts")] public class Post : IReturn<Post> { [AutoIncrement] [PrimaryKey] public int PostId { get; …

servicestack ormlite-servicestack
ServiceStack + ORMLite + Repository Pattern

I'm trying to implement the Repository pattern using ORMLite. I initially started off with: public List<Todo> GetByIds(…

design-patterns repository-pattern servicestack ormlite-servicestack
ServiceStack ORMLite - Select columns

I recently started working with ServiceStack and its ORMLite framework. I have searched on Google and browsed the source code …

ormlite-servicestack