コード例 #1
0
        public async Task <string> Get(string table, string primaryKey)
        {
            DataStoreContext context = HttpContext.RequestServices.GetService(typeof(DataStoreContext)) as DataStoreContext;

            return(context.GetDataByKey(table, primaryKey));
        }