ServiceStack is Fast, Simple and Versatile message-based Web Services and MQ Framework for .NET and .NET Core
I would like to set ServiceStack's default format to JSON, as opposed to the HTML formatted response it normally returns …
c# .net servicestackEnvironment is Visual Studio 2012, ServiceStack, ASP.NET Web Application Project (followed https://github.com/ServiceStack/ServiceStack/wiki/Create-your-first-webservice) Looking through …
c# api rest soa servicestackI'm doing a small research about a client for elastic search in .net and I found that NEST is one …
elasticsearch servicestack json.net nestFor a table that has an identity: [AutoIncrement] public int Id { get; set;} When inserting a new row into the …
sql-server servicestack ormlite-servicestackGiven the following in C#: [Flags] public enum MyFlags { None = 0, First = 1 << 0, Second = 1 << 1, Third = 1 << 2, Fourth = 1 &…
c# json serialization enums servicestackI used Only Redis as my DB, and my client is ServiceStack.Redis. The thing is, if two concurrent request …
redis servicestack servicestack.redisI have the following POCO: [Alias("Posts")] public class Post : IReturn<Post> { [AutoIncrement] [PrimaryKey] public int PostId { get; …
servicestack ormlite-servicestackI'm trying to implement the Repository pattern using ORMLite. I initially started off with: public List<Todo> GetByIds(…
design-patterns repository-pattern servicestack ormlite-servicestackSay I have 2 pages /NotADefault.cshtml /Views/Default.cshtml Question 1. Now I run it, page A always gets called implicitly …
c# servicestackFor a long time we were using msmq and redis queue (IRedisList). Couple of month ago we started trying redis …
c# .net redis servicestack publish-subscribe