c# - Where to find samples for latest ServiceStack release? -
i new servicestack. want know sample codes link (and samples github) still working latest servicestack release?
http://www.servicestack.net/docs/ormlite/ormlite-overview
i encountered error @
//re-create table schemas: dbcmd.droptable<orderdetail>(); dbcmd.droptable<order>(); dbcmd.droptable<customer>(); dbcmd.droptable<product>(); dbcmd.droptable<employee>(); dbcmd.createtable<employee>(); dbcmd.createtable<product>(); dbcmd.createtable<customer>(); dbcmd.createtable<order>(); dbcmd.createtable<orderdetail>();
when switched older dlls (3.7.9.0) that's fine
those docs appear 2011, , servicestack has had new api (or two) since then. you'll better off looking @ github:
https://github.com/servicestack/servicestack.ormlite
in particular case, methods added idbcommand
have been moved idbconnection
.
Comments
Post a Comment