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
ServiceStack metadata page
We are evaluating ServiceStack for a new internal project.
We are using the template https://github.com/NetCoreTemplates/web but when we run the app the app is not redirecting automatically to the me...
Terry
Votes: 0
Answers: 1
VS2022 ServiceStack extension
I’ve this problem: I’ve installed the VS2022 ServiceStack extension but no template is selectable when I want to create a new project. From the extensions list I can see the extension installed.
Wher...

w4rcT
Votes: 0
Answers: 1
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
