python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
ServiceStack Ormlite using Select with NoLock
I have the following simple OrmLite select statement:
SpiderUser lSpiderUser = db.Select<SpiderUser>(
su => su.WindowsUserName == vWindowsUserName).SingleOrDefault();
(The variable 'db' ...
Bjørn Sigurd Benestad Johansen
Votes: 0
Answers: 1
JWT Auth with Servicestack Ormlite - Generated Bearer token too large to use (>4096)
I'm migrating my ServiceStack Ormite MVC application to use the JWTAuthProvider for stateless auth. I have this working by authenticating as normal, and setting the returned BearerToken and RefreshTok...
Irish Yobbo
Votes: 0
Answers: 0
How can I prevent OrmLite from adjusting the case of the fields being returned by a stored procedure into POCO?
I have a column being returned from stored procedure called CV_Filename
public class FileNames
{
public string CV_Filename { get; set; }
}
app.MapGet("/filenames", () =>
{
va...
Terry Wells
Votes: 0
Answers: 1
ServiceStack ORMLite JSON Deserialization multiple levels
I've got a class containing a Dictionary like this:
Dictionary<string,object> Data
I put data on multiple levels into here, such as:
Data.Add("simple",4);
Data.Add("object",...
specimen
Votes: 0
Answers: 1

