Assuming you're using Entity Framework Core, make sure you're using EF Core 3 and then it will scaffold views for you as keyless entity types (previously known as query types)- see https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-3.0/#reverse-engineering-of-database-views. If you're tied to a previous version, you can still do it with query types in 2.1 as long as you scaffold it yourself in OnModelCreating, or whatever version you're on you can always fall back to a raw SQL SELECT statement.
At a lower level, if you're not using EF then for most purposes you can treat views as read-only tables.