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

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -