-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use Bulk Update for all columns? #106
Comments
Curious about this too |
You can solve this using reflection. I have done it before, you have to build the |
|
@SuperGodTao that's a great start. I suggest adding the following:
|
I have created following method to BulkUpdate. I am passing list to it. How to update all the column.
I want to make it generic method.
public virtual void BulkUpdate(IEnumerable entities)
{
if (entities == null)
throw new ArgumentNullException(nameof(entities));
The text was updated successfully, but these errors were encountered: