builder.Services.AddSwaggerGen(c =>
{ c.OperationFilter<AddRegionCodeHeaderParameter>(); c.EnableAnnotations(); c.SwaggerDoc("v1", new OpenApiInfo { Title = "Patient Web API", Version = "v1" }); c.OperationFilter<AddRegionCodeHeaderParameter>(); });Wednesday, 23 October 2024
Thursday, 10 October 2024
Same EMployee have 5 recrods to get only one record.
WITH RankedRecords AS (
SELECT
*,
ROW_NUMBER() OVER (PARTITION BY AppraisalID ORDER BY ModifiedDate) AS RowNum
FROM
tbl_EmpCompetencies
)
SELECT *
FROM RankedRecords
WHERE RowNum = 1;
Subscribe to:
Comments (Atom)
Capgemini Interview
capgemini famous interview question List<int> A = new List<int>(); A.add(1); List<int> B=A; B=new List<int>(); B.Ad...
-
D:\A-MyProjects2024-2025\ReactNative2025\BookRental\android\app\build\outputs\apk\debug path of apk To build an Android app using Capacitor...
-
OLX, like many large-scale online platforms, employs a variety of data structures and technologies to manage its data effectively. While s...