a dotnet developer but can't find reliable ORM (Official like EFCore with LINQ).. Can anyone help me to link any?
go devs usually prefer raw sql. Or lightweight query builder. Check out Jet
For Go and Rust, there are indeed ORMs available, though they might not have the exact feature parity with EF Core and LINQ in .NET. Here are some reliable options for each language: ### Go 1. GORM - Website: [https://gorm.io/](https://gorm.io/) - Description: GORM is a popular ORM for Go that provides a developer-friendly API, supports database migrations, and offers comprehensive features similar to EF Core. 2. SQLBoiler - Website: [https://github.com/volatiletech/sqlboiler](https://github.com/volatiletech/sqlboiler) - Description: SQLBoiler generates type-safe Go code from your database schema, providing an experience closer to using LINQ in .NET. 3. Ent - Website: [https://entgo.io/](https://entgo.io/) - Description: Ent is an entity framework for Go, providing code generation capabilities and a fluent API for querying, similar to LINQ. ### Rust 1. Diesel - Website: [https://diesel.rs/](https://diesel.rs/) - Description: Diesel is the most popular ORM in Rust, offering strong type safety and a query builder that provides a LINQ-like experience. 2. SeaORM - Website: [https://www.sea-ql.org/SeaORM/](https://www.sea-ql.org/SeaORM/) - Description: SeaORM is a new ORM framework for Rust, inspired by TypeORM (from TypeScript). It aims to be developer-friendly and supports asynchronous operations. 3. Tiberius - Website: [https://github.com/prisma/tiberius](https://github.com/prisma/tiberius) - Description: While not a full ORM, Tiberius is a powerful SQL Server driver for Rust, often used in combination with other libraries to achieve ORM-like functionality. These libraries should provide you with a good starting point for ORM capabilities in Go and Rust. While they may not have the exact feature set as EF Core, they are well-maintained and widely used in the community.
Обсуждают сегодня