Answers for "how to check if data already exists in database in c# mvc"

C#
0

how to check if data already exists in database in c# mvc

private bool UserExists(string id)
        {
            return _context.Users.Any(e => e.UserId == id);
        }
Posted by: Guest on November-01-2021

Code answers related to "how to check if data already exists in database in c# mvc"

C# Answers by Framework

Browse Popular Code Answers by Language