You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had to implement it differently than how you did it in the other project. Changing to use CSpace caused issues in how my queries were being built and also caused issues with retrieving the parameter value if you have more than 1 DbContext created.
But the result should be the same and I added a test case to the example program I added earlier tonight to test it. The "RemappedEntityProp" property in the Account class is mapped to a database column name of "RemappedDBProp". Before the change, that blew up. With the change, it's now build the query correctly against the "RemappedDBProp" db column name and mapping the filter parameter value correctly.
Thanks for pointing this out. I had not hit this yet in my own use but I'm sure it was just a matter of time.
Similar to this one.
As it is now we can't use database column names that differ from the C# property names.
The text was updated successfully, but these errors were encountered: