CatFactory.SqlServer icon indicating copy to clipboard operation
CatFactory.SqlServer copied to clipboard

Add Query Builder definition

Open hherzl opened this issue 2 years ago • 0 comments

Add QueryBuilder definition in Features namespace.

This definition must allow to define a query and there will be extension methods for common queries:

Select All

var query = QueryBuilder
 .Select<Student>();

// Output:
// select [Id], [GivenName], [MiddleName], [FamilyName], [FullName] from [dbo].[Student]

hherzl avatar May 09 '23 05:05 hherzl