我的班级联系人:
public class Contact
{
public string Function { get; set; };
public string Civility { get; set; }
public string FirstName { get; set; }
public List<Certification> Certifications { get; set; } = new List<Certification>();
}
我的查询逻辑如下:
List<Contact> contacts
= await Context.Database
.SqlQuery<Contact>("[dbo].[Contact] @codes,@Sprache",
parameters).ToListAsync();
如何使用.selectMan许多具有此类功能的名称?