mirror of
https://github.com/bitwarden/server.git
synced 2025-07-12 13:19:01 -05:00
Added Sql project with database schema. Added SqlServer repositories for Site, Folder, and User (Cipher still TODO). Switched DI in Startup to SqlServer repos.
This commit is contained in:
11
src/Sql/dbo/Stored Procedures/User_ReadById.sql
Normal file
11
src/Sql/dbo/Stored Procedures/User_ReadById.sql
Normal file
@ -0,0 +1,11 @@
|
||||
CREATE PROCEDURE [dbo].[User_ReadById]
|
||||
@Id UNIQUEIDENTIFIER
|
||||
AS
|
||||
BEGIN
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[UserView]
|
||||
WHERE
|
||||
[Id] = @Id
|
||||
END
|
Reference in New Issue
Block a user