ServiceStack.OrmLite is a convention-based, configuration-free lightweight ORM that uses standard POCO classes and Data Annotation attributes to infer its table schema.

learn more… | top users | synonyms

1
vote
0answers
32 views

ServiceStack MARS (Multiple Active Result Sets) using ORMLite and Output Parameters

ServiceStack ORMLite is great, I've typically steered clear of the ORM mentality preferring to build databases as it makes sense to build databases instead of a 1:1 class model. That said, there are ...
1
vote
1answer
34 views

Bulk Inserts with Service Stack & Ormlite

I am having trouble finding a good way to do fast bulk inserts in ServiceStacks Ormlite I will be performing the inserts against SQL Azure. The only batch inserts that I could find would be to do as ...
0
votes
1answer
55 views

How do you inject with parameters using AutoFac?

I'm trying to figure out the syntax to inject OrmLiteConnectionFactory using AutoFac. This is a working example using Funq, another DI framework. container.Register<IDbConnectionFactory>(c ...
2
votes
1answer
63 views

Servicestack ORMLite Query Multiple

I was wondering if ORMLite had a QueryMultiple solution like dapper. My use case is in getting paged results. return new { Posts = conn.Select<Post>(q => q.Where(p => p.Tag == ...
2
votes
1answer
32 views

ServiceStack Ormlite SqlExpressionVisitor null check in Where extension

I would like to write a method for querying table with one method by null cheking parameters using SqlExpressionVisitor of Ormlite Here is my method : public static List<UserChatsDTO> ...
0
votes
2answers
41 views

Selecting a subset of data in ServiceStack.OrmLite

Is there any way to return a subset of a table in ServiceStack.OrmLite? Something like: public class MyStuff { public Guid Id { get; set; } public string Name { get; set; } public byte[] ...
1
vote
0answers
29 views

OrmLite pattern for static methods in business logic

For a Web-based (ASP.NET) environment, what would be the best way to design the base service class using OrmLite (for factory and connection), such that the business logic classes (derived from the ...
1
vote
1answer
64 views

ServiceStack ORMLite Fluent Configuration

I am looking to create a new project using ServiceStacks OrmLite. I have used EntityFramework in the past and I prefer the use of the fluent api for mapping over the invasive attributes. Does ...
2
votes
1answer
54 views

ServiceStack OrmLite and DateTimeOffset support in the UK

I am getting an issue with OrmLite and DateTimeOffset support. I am based in the UK and believe that it is related. I have a table with a column of type DateTimeOffset. I get the following SQL ...
3
votes
0answers
53 views

OrmLite.Sqlite x86 / x64 and native library preloading

I want to target both x86 and x64 platform with a .Net 4 service and ServiceStack.OrmLite.Sqlite I've read about native library preloading ...
1
vote
1answer
48 views

Predicate in Service.OrmLite return enum value incorrectly

I am using ServiceStack.OrmLite (version 3.8.5) and I have the following: var report = dbCommand.Select<UploadedMediaReport>(x => x.Id == message.Id && ...
0
votes
2answers
221 views

Could not load file or assembly 'ServiceStack.OrmLite.SqliteNET' or one of its dependencies.

I've created Asp.Net MVC 4 application and using 'ServiceStack.OrmLite.Sqlite'. When I load the page I see the following error. Could not load file or assembly 'ServiceStack.OrmLite.SqliteNET' or one ...
0
votes
0answers
45 views

how to design ServiceStack's Business Logic [closed]

I am designing for our website using ServieStack now, we need a Bussiness Logic Layer where we write our buissness Logic in this Layer. I do not know how to design the Logic Layer, and I have not ...
1
vote
1answer
70 views

Get SQL Server CE path form multiple projects

To learn ServiceStack, I'm developing an API based in Northwind database (a SQL Server CE sdf file). My solution has 3 projects: Northwind.Data. Database and POCO classes Northwind.ServiceModel. DTO ...
1
vote
0answers
73 views

Can ServiceStack and Ormlite update multiple records like a SQL CASE statement can?

In this situation, there are multiple rows with the same device GUID because more than one user may use the same app on the device (but not simultaneously…unless they’re extraordinarily close). What ...
3
votes
0answers
44 views

ServiceStack OrmLite NLog Load exception after adding ServiceStack.Nlog

Using ServiceStack.OrmLite successfully for months. We just add added a dependency to ServiceStack.Logging.NLog which installed Nlog 2.0.1. We can log via SS.Logging find but when an OrmList call is ...
4
votes
1answer
79 views

Ormlite does not map Datetime from SQL Server to C#?

I have tried to retrieve some data from my sql server database in a time interval. I got a field in database of DateTime2(7) and in my DAO I got Datetime as type of that field. But I get the following ...
2
votes
2answers
31 views

How do I set the ContentType in a ServiceStack client?

I am using a ServiceStack client to call a webservice as follows: var client = new JsonServiceClient(apiUrl); var url = "/V1/MyApiCall"; var response = client.Post<MyApiCallResponse>(url, ...
1
vote
1answer
68 views

OrmLite: executing stored procedure and mapping the result onto model does not work when attributes are used

What are the actual requirements for ORMLite to project result of the call to stored procedure onto the model. I have a class that has some attributes and it will not map output of the sp correctly. ...
1
vote
1answer
58 views

How to clear the HttpOnly flag on Cookies?

I seem to be having the reverse problem to a lot of people. Many questions have looked at why their cookies lose the HttpOnly setting. I am trying to work out why mine keeps hanging around. I am ...
0
votes
0answers
33 views

Possible transaction issue in servicestack ormlite

using (var con = GetWriteConnection()) using (var trans = con.OpenTransaction(IsolationLevel.ReadCommitted)) { con.Insert<Y>(...); ...
1
vote
1answer
43 views

ServiceStack: nuget installation of OrmLite does not install all the pieces needed?

Installed package as per documentation and tried a simple query db.SingleOrDefault<Customer>("Id={0}",id) and got error Could not load type 'ServiceStack.Text.PlatformExtensions' from ...
1
vote
1answer
100 views

Why would servicestack ormlite save valid Guid values as NULL to SqLite database?

I am having this problem intermittently with ServiceStack.Net OrmLite on SqLite. My model class is using a Guid for the primary Id. My code sets a Guid.NewGuid() value to my model before saving, if ...
1
vote
1answer
71 views

servicestack.net ormlite with sqlite - prevent automatic primary key on create table

How do you stop ServiceStack.Net OrmLite from automatically making a primary key column? My model is as follows: public class Flower2Bee { public int FlowerId { get; set; } public int ...
4
votes
2answers
230 views

passing params expression results in strange error

I have a model call address, with that model i have created a few crud operations, in the process of doing this i want a way i could create a query based on any number of properties: public static ...
1
vote
1answer
50 views

ServiceStack OrmLite + Foreign Key

I've got the asp.net forms authentication tables in place, and I'd like to create a FK to one of the tables. Is this possible without creating a type to be used with the attribute?
1
vote
0answers
127 views

Dapper and OrmLite IDBConnectionFactory in ServiceStack

I am impressed with the speed that I can create services using ServiceStack, but for a while now I have not been able to grasp the concept of using OrmLite and Dapper simultaneously in my project. I ...
1
vote
1answer
47 views

Configure ConnectionFilter for a Named Connection

Given the following OrmLite configuration from the documentation, what is the best way to configure the ConnectionFilter for each of the the named connections? var dbFactory = new ...
1
vote
1answer
63 views

Example of OrmLite UpdateOnly with Multiple Fields

Is it possible to use the OrmLite extension method UpdateOnly to update multiple fields at once? The example given in the documentation is: db.UpdateOnly(new Person { FirstName = "JJ" }, p => ...
2
votes
1answer
120 views

SQLite under ORMLite doesn't allow any action after transaction if finished

After I create and commit a transaction in SQLite through ServiceStack's OrmLite I cannot go on and issue any queries. For example, the following test fails: [Test, Explicit] public ...
2
votes
1answer
83 views

Issue with SqlScalar<T> and SqlList<T> when calling stored procedure with parameters

The new API for Servicestack.OrmLite dictates that when calling fx a stored procedure you should use either SqlScalar or SqlList like this: List<Poco> results = db.SqlList<Poco>("EXEC ...
5
votes
1answer
219 views

How to use Dapper in ServiceStack

Currently, I am using OrmLite for DB operations. I am also planning to use Dapper ORM, but can anyone point me how to integrate DapperORM in ServiceStack. Do I need to implement both IDbConnection and ...
2
votes
1answer
145 views

Call stored procedure with optional parameters using OrmLite

I am using OrmLite to call stored procedure that has optional parameters. _dbConnection.SqlList<CustomerDTO>("sp_getcustomers @name", new { name = request.Name }); This statement is ...
0
votes
0answers
39 views

Can OrmLite handle queries that return multiple resultsets?

Using ServiceStack.OrmLite, If a query returns multiple resultsets how can I access all the resultsets and assingn each one to the respective POCO. As example I have a single store procedure that have ...
2
votes
1answer
63 views

Why is a servicestack service routing to GET instead of PUT

I was given permission to study ServiceStack this week. I love it. It is an amazing framework. But I have run into a situation where I cannot get a fairly straight-forward example to work. ...
1
vote
1answer
85 views

Difference between QueryById() and GetById() in ServiceStack OrmLite

Can anyone explain difference between QueryById() and GetById() as they both have same signatures. And there are many common functions which start with Query and Get, there might be some major ...
1
vote
1answer
115 views

Is there a yet fairly complete example projects servicestack that uses the new API?

I got the week off from work to learn servicestack and I am in awe of its simplicity, power, and speed. I am a pluralsight subscriber and I am going through the Jon Somnez course which is great and ...
1
vote
1answer
60 views

Does OrmLite support MetadataType attribute?

I'm learning servicestack.ormlite and I encountered this problem. When I use this POCO, I get a Primary Key error. This made me think that the MetadataType attribute does not have any effect and I ...
2
votes
1answer
77 views

ServiceStack OrmLite Command Timeout

When using IDbConnection.ExecuteSql how do I set the Command Timeout? IDbConnection db = ConnectionFactory.OpenDbConnection(); db.ExecuteSql("..."); If I use the IDbCommand.ExecuteSql ( See below ) ...
2
votes
2answers
140 views

Adding features to ServiceStack auth provider

I am evaluating ServiceStack using OrmLite. The built in Auth service, along with Session and Cache are so much better than ASP.NET membership provider. However, out of the box the Auth Service does ...
1
vote
2answers
127 views

Where to create MySql tables ServiceStack & OrmLite

I am just wondering about when and where tables should be created for a persisted application. I have registered my database connection factory in Global.asax.cs: ...
0
votes
1answer
202 views

OrmLite one to many in C# .Net

I have two classes public class A { public A() { _b = new List<B>(); } public int id {get;set;} public List<B> _b {get;set;} } public class B { public int Id {get;set;} public string ...
1
vote
1answer
150 views

ServiceStack get ORMLite to use T4

I am evaluating T4 for ORMLite. Regardless of a couple glitches I made it working. When I point the web.config to Northwind in MSSQL and run that from my SS web project the OrmLite.SP.cs ...
1
vote
1answer
216 views

ServiceStack Swapping ORMLite to Entity Framework

I want to replace ORMLite to EF5, and please don't ask me why :P ... So I searched around the net and have no luck finding much information on how to actually do this. Do I need to rewrite ...
1
vote
1answer
97 views

Injecting IDbConnectionFactory into Service class

I have started using ServiceStack today. So, let me know if I am doing something completely wrong. I am trying to inject Db into my Service class, for which I am using this code [TestFixture] public ...
1
vote
0answers
25 views

how do I set the command time out in the new ormlite api

I upgraded to the new version of ormlite and am updating my code but do not see where I can set the commandtime out now that every thing is off of idbconnection.
1
vote
1answer
93 views

Could not load type 'ServiceStack.Common.Extensions.ReflectionExtensions'

My Question I encounter an exception, its message is as following. Could not load type 'ServiceStack.Common.Extensions.ReflectionExtensions' from assembly 'ServiceStack.Common, Version=3.9.38.0, ...
3
votes
1answer
131 views

Audit trail with ServiceStack and ORMLite SQLServer

We are currently experimenting with service stack and ormlite for a new ERP application we are hoping to integrate with some of our legacy stuff. I find the approach taken by both Service-stack and ...
1
vote
1answer
244 views

ServiceStack Exception: 'Handler for Request not found' when trying to insert Entry to SqlLite db

I'm just learning how to use ServiceStack and I am getting an exception that I can't get past and not sure what is causing the exception. Here it is: Handler for Request not found: ...
3
votes
1answer
49 views

Dealing with serialized JSV types in Android

I have an existing SQLite database that is generated in ServiceStack ORMLite. It has a field that represents a property of type Dictionary in C#. ServiceStack serializes this into the database as ...

1 2 3