TLDR; How do I read data from a table using Entity Framework, when the table name isn\'t known at compile-time?
There is an external system that pro
Try this; :)
string tableName = "MyTableTest"; // Fetch the table records dynamically var tableData = ctx.GetType() .GetProperty(tableName) .GetValue(ctx, null);