This question is locked. New answers and comments are not allowed.
Evaluating the OpenAccess ORM, but some things aren't clear. I'm sure this is simple, but I just don't get it.
We are trying to retrieve a specific row from a table (FrequencyTypes), using the a value which is the PK. What we'd like to do is retrieve a row into a variable, and then use the values to do a few things.
The context is being resolved property, as we're able to perform other actions, but not sure how to go about this.
We are trying to retrieve a specific row from a table (FrequencyTypes), using the a value which is the PK. What we'd like to do is retrieve a row into a variable, and then use the values to do a few things.
Using dbContext As New EntitiesModel Dim lFreq As New FrequencyType lFreq=dbContext.FrequencyTypes.????[what goes here?]end using