- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
调用 {DataContext}.SubmitChanges()
时出现 stackoverflow 异常...我希望我知道要发布哪些代码行以帮助澄清情况,但是抛出异常时不会提供任何信息:
An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll
然后在查看详细信息中我得到:
{Cannot evaluate expression because the current thread is in a stack overflow state.}
我查看了这个 View 模型中的所有属性,以确保所有内容都已正确声明,并且没有导致那里的 stackoverflow 异常的问题......它只发生在 SubmitChanges()
之后。被称为。
这是调用提交的代码:
public void VerifyAdvancePaymentsAndSave()
{
try
{
if (!VerifyTakeHomeActualBreakDownForAdvancePayments())
{
MessageBox.Show(
"Cash, Check, and Money Order fields must add up to the amount in the Take Home Actual field!",
"Validation Error!", MessageBoxButton.OK, MessageBoxImage.Exclamation);
return;
}
if (MessageBox.Show("Are you sure you want to save this payment?", "Save", MessageBoxButton.YesNo, MessageBoxImage.Question) != MessageBoxResult.Yes)
return;
if (!UserController.CreateUserController().CheckAccess(UserController.RestrictedAccessAction.EditCollections))
{
return;
}
if (InitialCollectionAction == CollectionAction.ViewAdvancePayment)
{
foreach (Advance a in Advances)
{
foreach (AdvancePayment ap in a.AdvancePayments)
{
AdvancePayment newAP = sp.AdvancePayments.Where(adv => adv.Id == ap.Id).SingleOrDefault();
if (newAP != null)
{
newAP.Payment = ap.Payment;
newAP.IsSaved = false;
}
else
{
MessageBox.Show("Could not find Advance Payment to apply amount to!");
return;
}
}
}
}
else
{
try
{
CurrentCollection.Status = BatchStatus.Open.ToString();
CurrentCollection.CollectionDate = DateTime.Now;
CurrentCollection.IsAdvancedPayment = true;
CurrentCollection.CollectionMachines = null;
//sp.Collections.InsertOnSubmit(CurrentCollection);
}
catch
{
MessageBox.Show("Error inserting changes!");
}
}
try
{
sp.SubmitChanges();
if (InitialCollectionAction == CollectionAction.ViewAdvancePayment)
MessageBox.Show("Advance Payment was saved Successfully!");
else
MessageBox.Show("Advance Payment was submitted Sucessfully!");
CloseTab();
}
catch
{
MessageBox.Show("Error submitting changes!");
}
}
catch (Exception ex)
{
string message = UserController.CreateUserController().LoggedInUser.UserName + "\n" + ex.Message + "\n" + ex.StackTrace;
EmailController.CreateEmailController().SendEmail("URM Error", message);
}
}
堆栈跟踪 - 在 SubmitChanges() 调用之前
at URM.ViewModels.CollectionsViewModel.VerifyAdvancePaymentsAndSave()
at URM.Commands.CollectionsSaveCommand.Execute(Object parameter)
at MS.Internal.Commands.CommandHelpers.CriticalExecuteCommandSource(ICommandSource commandSource, Boolean userInitiated)
at System.Windows.Controls.Primitives.ButtonBase.OnClick()
at System.Windows.Controls.Button.OnClick()
at System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp(MouseButtonEventArgs e)
at System.Windows.UIElement.OnMouseLeftButtonUpThunk(Object sender, MouseButtonEventArgs e)
at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
at System.Windows.UIElement.OnMouseUpThunk(Object sender, MouseButtonEventArgs e)
at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
at System.Windows.Input.InputManager.ProcessStagingArea()
at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at System.Windows.Application.Run()
at URM.App.Main()
at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
此 View 模型中使用的模型:
public class AdvancePaymentsModel : INotifyPropertyChanged
{
public int AdvanceId { get; set; }
public string PaymentId { get; set; }
public decimal Payment { get; set; }
public DateTime PaymentDate { get; set; }
private string _status;
public string Status
{
get
{
return _status;
}
set
{
_status = value;
OnPropertyChanged("Status");
}
}
private Brush _brushObj;
public Brush BrushObj
{
get
{
return _brushObj;
}
set
{
_brushObj = value;
OnPropertyChanged("BrushObj");
}
}
private AdvancePayment _advancePayment;
public AdvancePayment AdvancePayment
{
get
{
return _advancePayment;
}
set
{
_advancePayment = value;
OnPropertyChanged("AdvancePayment");
}
}
private Visibility _voidButtonVisibility;
public Visibility VoidButtonVisibility
{
get
{
return _voidButtonVisibility;
}
set
{
_voidButtonVisibility = value;
OnPropertyChanged("VoidButtonVisibility");
}
}
}
public class AdvancePaymentsModel : INotifyPropertyChanged
{
public int AdvanceId { get; set; }
public string PaymentId { get; set; }
public decimal Payment { get; set; }
public DateTime PaymentDate { get; set; }
private string _status;
public string Status
{
get
{
return _status;
}
set
{
_status = value;
OnPropertyChanged("Status");
}
}
private Brush _brushObj;
public Brush BrushObj
{
get
{
return _brushObj;
}
set
{
_brushObj = value;
OnPropertyChanged("BrushObj");
}
}
private AdvancePayment _advancePayment;
public AdvancePayment AdvancePayment
{
get
{
return _advancePayment;
}
set
{
_advancePayment = value;
OnPropertyChanged("AdvancePayment");
}
}
private Visibility _voidButtonVisibility;
public Visibility VoidButtonVisibility
{
get
{
return _voidButtonVisibility;
}
set
{
_voidButtonVisibility = value;
OnPropertyChanged("VoidButtonVisibility");
}
}
}
}
启用调试 .Net Framework 源代码后...我看到在调度程序类中抛出了 stackoverflow 异常
private void PushFrameImpl(DispatcherFrame frame)
{
SynchronizationContext oldSyncContext = null;
SynchronizationContext newSyncContext = null;
MSG msg = new MSG();
_frameDepth++;
try
{
// Change the CLR SynchronizationContext to be compatable with our Dispatcher.
oldSyncContext = SynchronizationContext.Current;
newSyncContext = new DispatcherSynchronizationContext(this);
SynchronizationContext.SetSynchronizationContext(newSyncContext);
try
{
while(frame.Continue)
{
if (!GetMessage(ref msg, IntPtr.Zero, 0, 0))
break;
TranslateAndDispatchMessage(ref msg); //*<--------- gets thrown here*
}
// If this was the last frame to exit after a quit, we
// can now dispose the dispatcher.
if(_frameDepth == 1)
{
if(_hasShutdownStarted)
{
ShutdownImpl();
}
}
}
finally
{
// Restore the old SynchronizationContext.
SynchronizationContext.SetSynchronizationContext(oldSyncContext);
}
}
finally
{
_frameDepth--;
if(_frameDepth == 0)
{
// We have exited all frames.
_exitAllFrames = false;
}
}
}
这里是调度程序崩溃后的堆栈跟踪:
[Managed to Native Transition]
WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame frame) Line 2281 + 0x35 bytes Unknown
WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrame(System.Windows.Threading.DispatcherFrame frame) Line 368 + 0x9 bytes Unknown
WindowsBase.dll!System.Windows.Threading.Dispatcher.Run() Line 327 + 0x34 bytes Unknown
> PresentationFramework.dll!System.Windows.Application.RunDispatcher(object ignore) Line 2745 C#
PresentationFramework.dll!System.Windows.Application.RunInternal(System.Windows.Window window) Line 1841 C#
PresentationFramework.dll!System.Windows.Application.Run(System.Windows.Window window) Line 261 + 0x9 bytes C#
PresentationFramework.dll!System.Windows.Application.Run() Line 222 + 0x15 bytes C#
URM.exe!URM.App.Main() + 0x59 bytes C#
[Native to Managed Transition]
[Managed to Native Transition]
mscorlib.dll!System.AppDomain.ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity, string[] args) + 0x6b bytes
Microsoft.VisualStudio.HostingProcess.Utilities.dll!Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() + 0x27 bytes
mscorlib.dll!System.Threading.ThreadHelper.ThreadStart_Context(object state) + 0x6f bytes
mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) + 0xa7 bytes
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) + 0x16 bytes
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) + 0x41 bytes
mscorlib.dll!System.Threading.ThreadHelper.ThreadStart() + 0x44 bytes
[Native to Managed Transition]
所以在听取了@KellyGendron 和@David 的建议后,我最终得到了在 ChangeTracker 类中抛出的 stackoverflow 异常
internal override bool IsMemberPendingGeneration(MetaDataMember keyMember) {
if (this.IsNew && keyMember.IsDbGenerated) {
return true;
}
// look for any FK association that has this key member (should only be one)
foreach (MetaAssociation assoc in type.Associations) {
if (assoc.IsForeignKey) {
/*CRASHES HERE*/ int index = assoc.ThisKey.IndexOf(keyMember);
if (index > -1) {
// we must have a reference to this other object to know if its side of
// the association is generated or not
object otherItem = null;
if (assoc.ThisMember.IsDeferred) {
otherItem = assoc.ThisMember.DeferredValueAccessor.GetBoxedValue(this.current);
}
else {
otherItem = assoc.ThisMember.StorageAccessor.GetBoxedValue(this.current);
}
if (otherItem != null) {
if (assoc.IsMany) {
// Can't be pending generation for a value that would have to be the same
// across many rows.
continue;
}
else {
StandardTrackedObject trackedOther = (StandardTrackedObject)this.tracker.GetTrackedObject(otherItem);
if (trackedOther != null) {
MetaDataMember otherMember = assoc.OtherKey[index];
return trackedOther.IsMemberPendingGeneration(otherMember);
}
}
}
}
}
}
return false;
}
}
}
关键成员似乎是从我可以从其部分可用属性中得出的是 Location 类(数据库表),它似乎卡在 ID 列上
最佳答案
我可能没有正确阅读您的代码,但在此代码段中,newAP.Payment 似乎会指向自身,这可能是序列化程序如此困惑的原因。如果我看错了,请再次原谅我,今天 sleep 不足。
foreach (AdvancePayment ap in a.AdvancePayments)
{
AdvancePayment newAP = sp.AdvancePayments
.Where(adv => adv.Id == ap.Id).SingleOrDefault();
if (newAP != null)
{
newAP.Payment = ap.Payment;
...
如果不是这种情况,您可能想尝试将保存分成多个部分,例如将关联设置为空,然后按 ID 指定。这里有一个类似的案例可能会有所帮助...... http://social.msdn.microsoft.com/Forums/silverlight/en-US/d4438aaa-a916-4335-b182-ded75f162c2d/datacontextsubmitchanges-throws-stack-overflow-exception-on-rather-simple-insert
关于c# - 调用 .SubmitChanges() linq 时获取随机堆栈溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22304038/
我正在开发一个使用 Linq2SQL 进行数据访问的 WP7 芒果应用程序。我有一个 Note 实体,它有一个自动生成的 int 类型的键。 我第一次向数据库添加新注释时,操作正常,注释保存,然后如果
我正在尝试创建一个数据库。我做了一个表格,我想从中获取数据。一切似乎都很好,但我的数据库没有得到更新,也没有改变。我正在使用本地数据库。我尝试更改“复制到输出目录”但没有任何反应......Submi
我有一个向数据库添加记录的表单。主键是自动递增的。我想让网页重定向到显示刚刚输入的信息的页面。 例如,它会重定向到 http://localhost/details.aspx?softwareID=1
我不知道这段代码有什么问题,这段代码可以成功编译,但是不会更新数据库。我想念一些东西吗? DataClassesDataContext db = new DataClassesDataContext(
我知道之前有人问过这个问题,但我遇到了这个非常奇怪的初学者问题: 我想通过他们播放的电影的 id 更新 Actor 列表(只有一部电影) DataClasses1DataContext
有什么理由这样的事情行不通吗? 这是我用 LINQ 更新表中记录时多次使用的逻辑: DataClasses1DataContext db = new DataClasses1DataContext(
我正在尝试使用数据库上下文更新数据库中的 2 个字段 [HttpPost] [ValidateAntiForgeryToken] public ActionResult Change
我正在使用自定义存储过程从我的数据库中检索数据: tbTextBox.Text = db.getSettingValue("PropertyName").First().Value; (db是一个全局
在这里听起来不像是破记录(有一些帖子看起来像这个),但它们似乎都没有解决我的问题。好像要更新的时候 private bool resetPassword(string password) {
我想为我的模型覆盖 SubmitChanges() 方法。 当我尝试覆盖时出现编译错误: cannot override inherited member 'System.Data.Linq.Data
我有以下代码- public bool InsertUser(params) { User objUser = new User(params); objDataContext.Use
我在尝试调试 LINQ to SQL 和提交更改时遇到了很大的困难。 我一直在使用http://weblogs.asp.net/scottgu/archive/2007/07/31/linq-to-s
正在编辑其他人的代码,想知道在使用 for 循环和 InsertOnSubmit 时,submitchanges 调用是在循环内还是在循环外。 即: foreach (string t in newT
我在这里无能为力。问题是我试图在 LINQ to SQL 中使用数据库生成的标识属性在数据库中创建一个新实体,然后创建与第一个关联的另一个实体。我猜问题是 LINQ to SQL 不能在没有第一个实体
调用 {DataContext}.SubmitChanges() 时出现 stackoverflow 异常...我希望我知道要发布哪些代码行以帮助澄清情况,但是抛出异常时不会提供任何信息: An un
我在数据库中有一个表,主键是 emp_pk。现在使用 LINQ 我正在尝试对其执行一些操作。当我更改一些属性并调用时, context.SubmitChanges(); 理想情况下,where 子句应
谁能告诉我是否/如何在 Linq2Sql 调用 SubmitChanges() 之前验证数据上下文中的更改。我遇到的情况是,我创建了一个上下文,执行多个操作并在其他处理任务中添加了许多插入,然后在提交
我正在开发一个应用程序,其中一次将大量数据插入到 SQL 数据库中。我使用 LINQ to SQL,并有这样的东西作为我的插入操作: foreach(对象中的var obj) { context.In
在我的第二个 ASP.NET MVC 项目中,我面临一个非常奇怪的问题:当我调用 DataContext 类的 SubmitChanges 方法时,数据库中没有任何更新。这很奇怪,因为我的第一个项目一
我收到了 InvalidOperationException尝试使用 LinqToSql 添加行时。我们无法在内部复制它,并且只有我们的一个客户发生了大约 0.06%,总是对数据库进行相对简单的更改。
我是一名优秀的程序员,十分优秀!